Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: contextual_help_list

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3618
3619      echo $screen_options;
3620      echo $settings; ?>
3621 <div><?php wp_nonce_field( 'screen-options-nonce', 'screenoptionnonce', false ); ?></div>
3622 </form>
3623 </div>
3624
3625 <?php endif; // $show_screen
3626
3627      $_wp_contextual_help = apply_filters('contextual_help_list', $_wp_contextual_help, $screen);
3628      ?>
3629      <div id="contextual-help-wrap" class="hidden">
3630      <?php
3631      $contextual_help = '';
3632      if ( isset($_wp_contextual_help[$screen->id]) ) {
3633           $contextual_help .= '<div class="metabox-prefs">' . $_wp_contextual_help[$screen->id] . "</div>\n";
3634      } else {
3635           $contextual_help .= '<div class="metabox-prefs">';
3636           $default_help = __('<a href="http://codex.wordpress.org/" target="_blank">Documentation</a>');