Docs: Improve documentation for _post_states() and get_post_states().

Add documentation for `_media_states()`.

See #47110.
Built from https://develop.svn.wordpress.org/trunk@46315


git-svn-id: http://core.svn.wordpress.org/trunk@46114 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-09-26 00:57:58 +00:00
parent a351243928
commit 148322a970
2 changed files with 15 additions and 11 deletions

View File

@ -2062,15 +2062,16 @@ function iframe_footer() {
} }
/** /**
* Function to echo or return the Post States as HTML. * Function to echo or return the post states as HTML.
* *
* @since 2.7.0 * @since 2.7.0
* @since 5.3.0 Adopted use of get_post_states * @since 5.3.0 Added the `$echo` parameter and a return value.
*
* @see get_post_states()
* *
* @param WP_Post $post The post to retrieve states for. * @param WP_Post $post The post to retrieve states for.
* @param boolean $echo Optional. Whether to echo or return the Post States as an HTML string. Default true for echo. * @param bool $echo Optional. Whether to echo the post states as an HTML string. Default true.
* * @return string Post states string.
* @return string|void Post States string when echo is false.
*/ */
function _post_states( $post, $echo = true ) { function _post_states( $post, $echo = true ) {
$post_states = get_post_states( $post ); $post_states = get_post_states( $post );
@ -2096,14 +2097,12 @@ function _post_states( $post, $echo = true ) {
} }
/** /**
* Function to retrieve an array of Post States from a Post. * Function to retrieve an array of post states from a post.
* *
* @since 5.3.0 * @since 5.3.0
* *
* @param WP_Post $post The post to retrieve states for. * @param WP_Post $post The post to retrieve states for.
* * @return array The array of translated post states.
* @return array $post_states The array of translated post states.
*
*/ */
function get_post_states( $post ) { function get_post_states( $post ) {
$post_states = array(); $post_states = array();
@ -2170,7 +2169,12 @@ function get_post_states( $post ) {
} }
/** /**
* @param WP_Post $post * Function to echo the attachment media states as HTML.
*
* @since 3.2.0
*
* @param WP_Post $post The attachment post to retrieve states for.
* @return string Media states string.
*/ */
function _media_states( $post ) { function _media_states( $post ) {
$media_states = array(); $media_states = array();

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.3-beta1-46314'; $wp_version = '5.3-beta1-46315';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.