You can add the custom help by adding a hook to the page load e.g. page-new.php
would become load-page-new.php
function custom_help_page() {
add_filter('contextual_help','custom_page_help');
}
function custom_page_help($help) {
$custom = "<h5>Custom Help</h5>
<p>Custom help content</p>";
return $custom.$help;
}
add_action('load-page-new.php','custom_help_page'); //New page
add_action('load-page.php','custom_help_page'); //Page, edits, updates etc.
If you don’t want the default help to still display, simply remove echo $help;
Edited to return rather echo the values.
Related Posts:
- How to list ALL Pages in the dashboard?
- How to control contextual help section by code?
- show/hide toggle for subpages in wordpress admin area
- Disable or lock parent pages from being edited in wordpress admin
- Contextual help in wp-admin for non admins
- Admin panel: Javascript not loading properly. Cannot edit pages/posts [closed]
- adding the category to the admin column for a custom post type?
- Change page title in admin area
- How to filter by post-format in admin?
- sortable custom column in media library
- Make fonts.com font work in TinyMCE (iframe referrer issue)
- Securing wp-admin folder – Purpose? Importance?
- stop redirection on /wp-admin call to /wp-login
- Wp3.5 Media Gallery Edit modal: change captions to title
- What is the capability that permits access to WP-Admin?
- Opening specific posts on WP takes lot of time and freezes the editor
- Is it possible to set a option, and then redirect to another page directly from a admin notice link?
- 500 Internal Server Error after Register dialog, but with successful registration
- Change Dashboard url
- WordPress subdomain wp-admin redirects to main domain
- Block access to wp-admin
- Remove order field from Page Attributes box
- CDN + WP Admin Query – .htaccess redirection
- Users Unable to Access Dashboard/Posts/Pages
- Stop loading “collaborators” users on add new post or page?
- Prevent /wp-admin/ from redirecting to homepage?
- WordPress 3.2 Admin UI Guide
- Password reset link becomes invalid immediately [closed]
- Get which template being in use within WordPress-admin
- special characters after saving draft interpreted as �
- WordPress and bbPress Login conflicts?
- How can I use a variable to include a linked image?
- Add css code in admin_enqueue_scripts
- Why isn’t my email showing up as registered with WordPress anymore?
- Add custom list menu on Posts page in admin panel
- Unable to locate WordPress Root directory
- Does it matter if two people are using the same WordPress admin account?
- Use Password Protected Form without the use of wp-login.php
- redirect to a dedicated sign in page
- 404 redirect wp-login and wp-admin after changing login url [closed]
- Logout USER form backoffice after 30 minutes of inactivity [closed]
- More than one admin logged in?
- How do I let logged out users see the dashboard?
- Too many redirects after added SSL redirect on port 80 virtual host
- Register page in admin area
- “WordPress installations is currently out of date” problem with difficult situation [closed]
- load-{$page hook} and returned parameter
- Can’t access wp-admin, redirects to http://%24domain/wp-admin/
- Custom plugin admin page issues
- Making Comments, a sub_menu in admin menu
- Without using wordpress cms Is it possible to signup from my html page
- Customising Word press Admin – Add Post Page functionality to another similar page
- How to add ‘Insert HTML Table’ button to TinyMCE in admin?
- How to add custom CSS and JavaScript file for wp- admin dashboard (backend)
- GoDaddy hosting wp-admin problem
- How can I remove unwanted word on my WP site?
- Publish page by invoking submit via jQuery
- Add custom fields to a page template, admin side
- Error messages & can’t reach admin after upgrading to 3.4.1 WordPress
- Newly created user role not displaying on users screen
- Could not override the url in wp-config file
- issue with wordpress [wp-admin] redirects, when using kubernetes ingress hosting two wordpress websites using path
- Toggle between block ‘edit content’ and ‘select’ not properly working in WordPress Admin
- WordPress Admin extremely slow when other admin logged in
- Edit post & page option does not display on latest wordpress
- WordPress Migration Post Problems
- How to remove the color picker code from users-edit.php
- Can’t access WP-Admin via HTTPS
- Pages in wp-admin is not found 404
- wp-admin and wp-login.php not Accessible after Cloudflare
- Get rendered HTML of Page in Admin Area
- Having SSL enabled on admin, but disabled on post preview and live preview?
- Random authentication failures on a load balanced WP setup
- Can I get programmatic access to wp-admin?
- Strange URLs admin area bug
- remove_query_arg on options.php
- wp.svgPainter cannot init error, causing issues with admin panel
- mysql_escape_string PROBLEM
- Cannot access my wordpress website
- Google flagged a wp-admin redirect as phishing
- Custom comment action
- Problem with admin columns
- Checkbox not showing as checked on UserProfile (even with checked=”checked”)
- get_current_screen – ‘Trying to get property of non-object’ error
- Added fields in quick edit screen need to update at the moment
- Custome column sort by date not title
- is_admin() triggers error
- Modify admin panel tab position
- No HTML/Visual mode option in admin panel (New Post)
- Removing Author name
- not able to add thumbnail custom field in dropdown
- No wp-admin, wp-config, or .htaccess folder/file
- Taking over a WordPress site
- wordpress admin is broken [closed]
- LinkControl not showing suggestions when used on admin page
- After Upgrade: $user becomes unknown (id: 0) after successful login?
- Redirect users based on their roles, is_admin()
- insert an admin table inside another admin page
- /wp-admin/ – this link showing me “Index of /wp-admin”/ instead of dashboard
- What methods are you using to transfer individual WP site components from one site to another?