Docs: Correct the type for `WP_Post::$post_category` and `::$tags_input`.

These properties are arrays of category IDs and tag names, respectively, not a single integer or string.

Follow-up to [21651], [31127], [32729], [48941].

Props omaeyusuke.
Fixes #55785.
Built from https://develop.svn.wordpress.org/trunk@53428


git-svn-id: http://core.svn.wordpress.org/trunk@53017 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-05-21 12:07:13 +00:00
parent 766a38f2fb
commit f4af743ea7
2 changed files with 4 additions and 4 deletions

View File

@ -15,8 +15,8 @@
* @property string $page_template * @property string $page_template
* *
* @property-read int[] $ancestors * @property-read int[] $ancestors
* @property-read int $post_category * @property-read int[] $post_category
* @property-read string $tag_input * @property-read string[] $tags_input
*/ */
final class WP_Post { final class WP_Post {

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.1-alpha-53427'; $wp_version = '6.1-alpha-53428';
/** /**
* 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.