If you noticed clearly that in your WordPress dashboard, there is a little tab in the top-right corner which when clicked, drop down and show contextual help. Well, you will be delighted to know that you can hook different help text for different pages. Just, simply paste the snippet below into your functions.php file and you will be able to change the contents of your dashboard tab.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | add_action('load-page-new.php','add_custom_help_page'); add_action('load-page.php','add_custom_help_page'); function add_custom_help_page() { //the contextual help filter add_filter('contextual_help','custom_page_help'); } function custom_page_help($help) { //keep the existing help copy echo $help; //add some new copy echo "<h5>Custom Features</h5>"; echo "<p>Content placed above the more divider will appear in column 1. Content placed below the divider will appear in column 2.</p>"; } |
Snippet Source/Credit: WP Tuts