Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: default_page_template_title

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
1701                <?php if ( 0 < count( get_page_templates( null, $screen->post_type ) ) ) : ?>
1702           <label>
1703                <span class="title"><?php _e( 'Template' ); ?></span>
1704                <select name="page_template">
1705                     <?php     if ( $bulk ) : ?>
1706                     <option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
1707                     <?php     endif; // $bulk ?>
1708                     <?php
1709                     /** This filter is documented in wp-admin/includes/meta-boxes.php */
1710                     $default_title = apply_filters( 'default_page_template_title', __( 'Default Template' ), 'quick-edit' );
1711                     ?>
1712                     <option value="default"><?php echo esc_html( $default_title ); ?></option>
1713                     <?php page_template_dropdown( '', $screen->post_type ); ?>
1714                </select>
1715           </label>
1716      <?php endif; ?>
1717
1718                <?php if ( count( $flat_taxonomies ) && ! $bulk ) : ?>
1719