diff --git a/src/wp-admin/includes/meta-boxes.php b/src/wp-admin/includes/meta-boxes.php index 35d6c62bc7..204f0e5963 100644 --- a/src/wp-admin/includes/meta-boxes.php +++ b/src/wp-admin/includes/meta-boxes.php @@ -386,7 +386,7 @@ function post_submit_meta_box( $post, $args = array() ) { * * @since 3.5.0 * - * @param WP_Post $post + * @param WP_Post $post Current post object. */ function attachment_submit_meta_box( $post ) { ?> @@ -466,7 +466,7 @@ function attachment_submit_meta_box( $post ) { * * @since 3.1.0 * - * @param WP_Post $post Post object. + * @param WP_Post $post Current post object. * @param array $box { * Post formats meta box arguments. * @@ -511,7 +511,7 @@ endif; * * @todo Create taxonomy-agnostic wrapper for this. * - * @param WP_Post $post Post object. + * @param WP_Post $post Current post object. * @param array $box { * Tags meta box arguments. * @@ -574,7 +574,7 @@ function post_tags_meta_box( $post, $box ) { * * @todo Create taxonomy-agnostic wrapper for this. * - * @param WP_Post $post Post object. + * @param WP_Post $post Current post object. * @param array $box { * Categories meta box arguments. * @@ -696,7 +696,7 @@ function post_categories_meta_box( $post, $box ) { * * @since 2.6.0 * - * @param WP_Post $post + * @param WP_Post $post Current post object. */ function post_excerpt_meta_box( $post ) { ?> @@ -718,7 +718,7 @@ function post_excerpt_meta_box( $post ) { * * @since 2.6.0 * - * @param WP_Post $post + * @param WP_Post $post Current post object. */ function post_trackback_meta_box( $post ) { $form_trackback = ' @@ -1357,7 +1360,7 @@ function link_xfn_meta_box( $link ) { * * @since 2.6.0 * - * @param object $link + * @param object $link Current link object. */ function link_advanced_meta_box( $link ) { ?> @@ -1398,7 +1401,7 @@ function link_advanced_meta_box( $link ) { * * @since 2.9.0 * - * @param WP_Post $post A post object. + * @param WP_Post $post Current post object. */ function post_thumbnail_meta_box( $post ) { $thumbnail_id = get_post_meta( $post->ID, '_thumbnail_id', true ); @@ -1410,7 +1413,7 @@ function post_thumbnail_meta_box( $post ) { * * @since 3.9.0 * - * @param WP_Post $post A post object. + * @param WP_Post $post Current post object. */ function attachment_id3_data_meta_box( $post ) { $meta = array();