Changeset 49927 for trunk/src/wp-admin/includes/taxonomy.php
- Timestamp:
- 01/03/2021 10:02:13 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/taxonomy.php
r49193 r49927 184 184 * 185 185 * @param array $catarr The 'cat_ID' value is required. All other keys are optional. 186 * @return int| boolThe ID number of the new or updated Category on success. Zero or FALSE on failure.186 * @return int|false The ID number of the new or updated Category on success. Zero or FALSE on failure. 187 187 */ 188 188 function wp_update_category( $catarr ) { … … 241 241 * @param int $post_id 242 242 * @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'. 243 * @return string| bool|WP_Error243 * @return string|false|WP_Error 244 244 */ 245 245 function get_tags_to_edit( $post_id, $taxonomy = 'post_tag' ) { … … 254 254 * @param int $post_id 255 255 * @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'. 256 * @return string| bool|WP_Error256 * @return string|false|WP_Error 257 257 */ 258 258 function get_terms_to_edit( $post_id, $taxonomy = 'post_tag' ) {
Note: See TracChangeset
for help on using the changeset viewer.