Docs: Copy a helpful inline doc into the function header for visibility.
See #42505 Built from https://develop.svn.wordpress.org/trunk@42664 git-svn-id: http://core.svn.wordpress.org/trunk@42493 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
17589837d2
commit
f7224ea635
|
@ -4099,7 +4099,9 @@ function wp_set_post_tags( $post_id = 0, $tags = '', $append = false ) {
|
|||
*
|
||||
* @param int $post_id Optional. The Post ID. Does not default to the ID of the global $post.
|
||||
* @param string|array $tags Optional. An array of terms to set for the post, or a string of terms
|
||||
* separated by commas. Default empty.
|
||||
* separated by commas. Hierarchical taxonomies must always pass IDs rather
|
||||
* than names so that children with the same names but different parents
|
||||
* aren't confused. Default empty.
|
||||
* @param string $taxonomy Optional. Taxonomy name. Default 'post_tag'.
|
||||
* @param bool $append Optional. If true, don't delete existing terms, just add on. If false,
|
||||
* replace the terms with the new terms. Default false.
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-42663';
|
||||
$wp_version = '5.0-alpha-42664';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue