Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: page_attributes_misc_attributes

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
901 <input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr( $post->menu_order ); ?>" />
902 <?php
903 /**
904  * Fires before the help hint text in the 'Page Attributes' meta box.
905  *
906  * @since 4.8.0
907  *
908  * @param WP_Post $post The current post.
909  */
910 do_action( 'page_attributes_misc_attributes', $post );
911 ?>
912 <?php if ( 'page' == $post->post_type && get_current_screen()->get_help_tabs() ) : ?>
913 <p><?php _e( 'Need help? Use the Help tab above the screen title.' ); ?></p>
914 <?php endif;
915      endif;
916 }
917
918 // -- Link related Meta Boxes
919