Changeset 42674
- Timestamp:
- 02/08/2018 11:23:43 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r42343 r42674 931 931 ?> 932 932 <p class="post-attributes-label-wrapper"><label class="post-attributes-label" for="page_template"><?php _e( 'Template' ); ?></label> 933 934 935 936 937 938 939 940 941 942 943 933 <?php 934 /** 935 * Fires immediately after the label inside the 'Template' section 936 * of the 'Page Attributes' meta box. 937 * 938 * @since 4.4.0 939 * 940 * @param string $template The template used for the current post. 941 * @param WP_Post $post The current post. 942 */ 943 do_action( 'page_attributes_meta_box_template', $template, $post ); 944 944 ?> 945 945 </p>
Note: See TracChangeset
for help on using the changeset viewer.