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 |
|---|---|
| 748 | /** |
| 749 | * Filter the title of the default page template displayed in the drop-down. |
| 750 | * |
| 751 | * @since 4.1.0 |
| 752 | * |
| 753 | * @param string $label The display value for the default page template title. |
| 754 | * @param string $context Where the option label is displayed. Possible values |
| 755 | * include 'meta-box' or 'quick-edit'. |
| 756 | */ |
| 757 | $default_title = apply_filters( 'default_page_template_title', __( 'Default Template' ), 'meta-box' ); |
| 758 | ?> |
| 759 | <option value="default"><?php echo esc_html( $default_title ); ?></option> |
| 760 | <?php page_template_dropdown($template); ?> |
| 761 | </select> |
| 762 | <?php |
| 763 | } ?> |
| 764 | <p><strong><?php _e('Order') ?></strong></p> |
| 765 | <p><label class="screen-reader-text" for="menu_order"><?php _e('Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr($post->menu_order) ?>" /></p> |
| 766 | <p><?php if ( 'page' == $post->post_type ) _e( 'Need help? Use the Help tab in the upper right of your screen.' ); ?></p> |