Comments on: WordPress 3.0 action hook contextual_help http://www.studiograsshopper.ch/code-snippets/wordpress-3-0-action-hook-contextual_help/ Sun, 22 Mar 2015 14:44:25 +0000 hourly 1 http://wordpress.org/?v=4.1.1 By: Ade http://www.studiograsshopper.ch/code-snippets/wordpress-3-0-action-hook-contextual_help/#comment-19112 Sat, 09 Oct 2010 17:36:21 +0000 http://www.studiograsshopper.ch/?p=2364#comment-19112 Interesting idea, Manny. Which screens would you want to be able to add contextual help to?

Cheers,

Ade.

]]>
By: manny http://www.studiograsshopper.ch/code-snippets/wordpress-3-0-action-hook-contextual_help/#comment-19107 Fri, 08 Oct 2010 00:50:36 +0000 http://www.studiograsshopper.ch/?p=2364#comment-19107 Would love to see “contextual help customization” as a plugin, whereyou can edit the text or even add html to it.

]]>
By: Ade http://www.studiograsshopper.ch/code-snippets/wordpress-3-0-action-hook-contextual_help/#comment-13998 Wed, 12 May 2010 16:31:00 +0000 http://www.studiograsshopper.ch/?p=2364#comment-13998 Thanks for posting this. Yep, things can move fast when close to a final release. :-)

]]>
By: Seamus http://www.studiograsshopper.ch/code-snippets/wordpress-3-0-action-hook-contextual_help/#comment-13994 Wed, 12 May 2010 15:06:12 +0000 http://www.studiograsshopper.ch/?p=2364#comment-13994 It looks like they have updated it once again to have the new functionality while being backwards compatible.

apply_filters('contextual_help', $contextual_help, $screen->id, $screen);

Also remember to include the number of parameters your function accepts when registering:

add_action( 'contextual_help', 'my_admin_help_function', 10, 3 );
function my_admin_help_function($contextual_help, $screen_id, $screen) { ... }

]]>
By: takien http://www.studiograsshopper.ch/code-snippets/wordpress-3-0-action-hook-contextual_help/#comment-9144 Tue, 02 Feb 2010 07:15:47 +0000 http://www.studiograsshopper.ch/?p=2364#comment-9144 thanks for the great post.
I think I need this information in the future, bookmarked.

]]>