Filters the title of the default page template displayed in the drop-down.
$labelstring$contextstringwp-admin/edit-form-blocks.php:204file scopewp-admin/includes/class-wp-posts-list-table.php:1895WP_Posts_List_Table::inline_edit()wp-admin/includes/meta-boxes.php:1063page_attributes_meta_box() * @since 4.1.0 * * @param string $label The display value for the default page template title. * @param string $context Where the option label is displayed. Possible values * include 'meta-box' or 'quick-edit'. */ $default_title = apply_filters( 'default_page_template_title', __( 'Default template' ), 'meta-box' ); ?><option value="default"><?php echo esc_html( $default_title ); ?></option> <?php page_template_dropdown( $template, $post->post_type ); ?></select><?php endif; ?> <?php if ( post_type_supports( $post->post_type, 'page-attributes' ) ) : ?>Introduced in 4.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.