get_tags, $tags, $args

get_tags, $tags, $args

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: 7.0.3

apply_filters('get_tags, $tags, $args') is found 1 times:

  • /wp-includes/category.php line 313
    		 * @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;
    }
    
    /**