Allow plugis to replace just the default help, preserving contextual.

git-svn-id: https://develop.svn.wordpress.org/trunk@11235 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-05-07 19:30:41 +00:00
parent 1466033b1e
commit 424eed30a7
1 changed files with 4 additions and 3 deletions

View File

@ -3516,9 +3516,10 @@ function screen_meta($screen) {
}
$contextual_help .= '<div class="metabox-prefs">';
$contextual_help .= __('<a href="http://codex.wordpress.org/" target="_blank">Documentation</a>');
$contextual_help .= '<br />';
$contextual_help .= __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>');
$default_help = __('<a href="http://codex.wordpress.org/" target="_blank">Documentation</a>');
$default_help .= '<br />';
$default_help .= __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>');
$contextual_help .= apply_filters('default_contextual_help', $default_help);
$contextual_help .= "</div>\n";
echo apply_filters('contextual_help', $contextual_help, $screen);
?>