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 |
---|---|
1813 |
|
1814 | <label> |
1815 | <span class="title"><?php _e( 'Template' ); ?></span> |
1816 | <select name="page_template"> |
1817 | <?php if ( $bulk ) : ?> |
1818 | <option value="-1"><?php _e( '— No Change —' ); ?></option> |
1819 | <?php endif; // $bulk ?> |
1820 | <?php |
1821 | /** This filter is documented in wp-admin/includes/meta-boxes.php */ |
1822 | $default_title = apply_filters( 'default_page_template_title', __( 'Default template' ), 'quick-edit' ); |
1823 | ?> |
1824 | <option value="default"><?php echo esc_html( $default_title ); ?></option> |
1825 | <?php page_template_dropdown( '', $screen->post_type ); ?> |
1826 | </select> |
1827 | </label> |
1828 |
|
1829 | <?php endif; ?> |
1830 |
|
1831 | <?php if ( count( $flat_taxonomies ) && ! $bulk ) : ?> |