Changeset 34895
- Timestamp:
- 10/07/2015 02:44:59 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r34566 r34895 52 52 </div> 53 53 <?php endif; // public post type ?> 54 <?php 55 /** 56 * Fires before the post time/date setting in the Publish meta box. 57 * 58 * @since 4.4.0 59 * 60 * @param WP_Post $post WP_Post object for the current post. 61 */ 62 do_action( 'post_submitbox_minor_actions', $post ); 63 ?> 54 64 <div class="clear"></div> 55 65 </div><!-- #minor-publishing-actions --> … … 208 218 * 209 219 * @since 2.9.0 210 */ 211 do_action( 'post_submitbox_misc_actions' ); 220 * @since 4.4.0 Added the `$post` parameter. 221 * 222 * @param WP_Post $post WP_Post object for the current post. 223 */ 224 do_action( 'post_submitbox_misc_actions', $post ); 212 225 ?> 213 226 </div>
Note: See TracChangeset
for help on using the changeset viewer.