WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 966 | <input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr( $post->menu_order ); ?>" /> |
| 967 | <?php |
| 968 | /** |
| 969 | * Fires before the help hint text in the 'Page Attributes' meta box. |
| 970 | * |
| 971 | * @since 4.9.0 |
| 972 | * |
| 973 | * @param WP_Post $post The current post. |
| 974 | */ |
| 975 | do_action( 'page_attributes_misc_attributes', $post ); |
| 976 | ?> |
| 977 | <?php if ( 'page' == $post->post_type && get_current_screen()->get_help_tabs() ) : ?> |
| 978 | <p><?php _e( 'Need help? Use the Help tab above the screen title.' ); ?></p> |
| 979 | <?php |
| 980 | endif; |
| 981 | endif; |
| 982 | } |
| 983 | |
| 984 | // -- Link related Meta Boxes |