get_tags

get_tags

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('get_tags') is found 1 times:

  • /wp-includes/category.php line 312
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
             * @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;
    }
     
    /**