Changeset 42875 for trunk/src/wp-includes/category.php
- Timestamp:
- 03/25/2018 06:09:56 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category.php
r42343 r42875 274 274 * 275 275 * @param string|array $args Tag arguments to use when retrieving tags. 276 * @return array List of tags.276 * @return WP_Term[]|int $tags Array of 'post_tag' term objects, or a count thereof. 277 277 */ 278 278 function get_tags( $args = '' ) { … … 289 289 * @since 2.3.0 290 290 * 291 * @param array $tags Array of 'post_tag' term objects.292 * @param array $args An array of arguments. @see get_terms()291 * @param WP_Term[]|int $tags Array of 'post_tag' term objects, or a count thereof. 292 * @param array $args An array of arguments. @see get_terms() 293 293 */ 294 294 $tags = apply_filters( 'get_tags', $tags, $args );
Note: See TracChangeset
for help on using the changeset viewer.