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
164  * Get all available templates for the post/page attributes meta-box.
165  * The "Default template" array element should only be added if the array is
166  * not empty so we do not trigger the template select element without any options
167  * besides the default value.
168  */
169 $available_templates = wp_get_theme()->get_page_templates( get_post( $post->ID ) );
170 $available_templates = ! empty( $available_templates ) ? array_merge(
171      array(
172           /** This filter is documented in wp-admin/includes/meta-boxes.php */
173           '' => apply_filters( 'default_page_template_title', __( 'Default template' ), 'rest-api' ),
174      ),
175      $available_templates
176 ) : $available_templates;
177
178 // Media settings.
179 $max_upload_size = wp_max_upload_size();
180 if ( ! $max_upload_size ) {
181      $max_upload_size = 0;
182 }