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.

git-svn-id: https://develop.svn.wordpress.org/trunk@53428 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2022-05-21 12:05:49 +00:00
parent 1590e8e0c8
commit 7cb5d2e869

View File

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