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 |
---|---|
1628 | <?php if ( 0 < count( get_page_templates( null, $screen->post_type ) ) ) : ?> |
1629 | <label> |
1630 | <span class="title"><?php _e( 'Template' ); ?></span> |
1631 | <select name="page_template"> |
1632 | <?php if ( $bulk ) : ?> |
1633 | <option value="-1"><?php _e( '— No Change —' ); ?></option> |
1634 | <?php endif; // $bulk ?> |
1635 | <?php |
1636 | /** This filter is documented in wp-admin/includes/meta-boxes.php */ |
1637 | $default_title = apply_filters( 'default_page_template_title', __( 'Default Template' ), 'quick-edit' ); |
1638 | ?> |
1639 | <option value="default"><?php echo esc_html( $default_title ); ?></option> |
1640 | <?php page_template_dropdown( '', $screen->post_type ); ?> |
1641 | </select> |
1642 | </label> |
1643 | <?php endif; ?> |
1644 |
|
1645 | <?php if ( count( $flat_taxonomies ) && ! $bulk ) : ?> |
1646 |
|