Changeset 34911
- Timestamp:
- 10/07/2015 04:33:52 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r34895 r34911 4 4 5 5 /** 6 * Display post submit form fields.6 * Displays post submit form fields. 7 7 * 8 8 * @since 2.7.0 … … 10 10 * @global string $action 11 11 * 12 * @param object $post 13 */ 14 function post_submit_meta_box($post, $args = array() ) { 12 * @param WP_Post $post Current post object. 13 * @param array $args { 14 * Array of arguments for building the post submit meta box. 15 * 16 * @type string $id Meta box ID. 17 * @type string $title Meta box title. 18 * @type callable $callback Meta box display callback. 19 * @type array $args Extra meta box arguments. 20 * } 21 */ 22 function post_submit_meta_box( $post, $args = array() ) { 15 23 global $action; 16 24
Note: See TracChangeset
for help on using the changeset viewer.