term_exists_default_query_args

term_exists_default_query_args

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('term_exists_default_query_args') is found 1 times:

  • /wp-includes/taxonomy.php line 1614
    1610
    1611
    1612
    1613
    1614
    1615
    1616
    1617
    1618
    1619
    1620
    *                                the search is against all taxonomies.
     * @param int|null   $parent_term ID of parent term under which to confine the exists search.
     *                                Null indicates the search is unconfined.
     */
    $defaults = apply_filters( 'term_exists_default_query_args', $defaults, $term, $taxonomy, $parent_term );
     
    if ( is_int( $term ) ) {
        if ( 0 === $term ) {
            return 0;
        }
        $args  = wp_parse_args( array( 'include' => array( $term ) ), $defaults );