Ticket #26267: 26267.2.patch
| File 26267.2.patch, 1022 bytes (added by , 10 years ago) |
|---|
-
src/wp-admin/includes/meta-boxes.php
51 51 <input type="hidden" name="wp-preview" id="wp-preview" value="" /> 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 --> 56 66 … … 207 217 * Fires after the post time/date setting in the Publish meta box. 208 218 * 209 219 * @since 2.9.0 220 * @since 4.4.0 Added the `$post` parameter. 221 * 222 * @param WP_Post $post WP_Post object for the current post. 210 223 */ 211 do_action( 'post_submitbox_misc_actions' );224 do_action( 'post_submitbox_misc_actions', $post ); 212 225 ?> 213 226 </div> 214 227 <div class="clear"></div>