get_tags

get_tags

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('get_tags') is found 1 times:

  • /wp-includes/category.php line 312
    		 * @param WP_Term[]|int|WP_Error $tags Array of 'post_tag' term objects, a count thereof,
    		 *                                     or WP_Error if any of the taxonomies do not exist.
    		 * @param array                  $args An array of arguments. See {@see get_terms()}.
    		 */
    		$tags = apply_filters( 'get_tags', $tags, $args );
    	}
    
    	return $tags;
    }
    
    /**