aioseo_sitemap_exclude_terms

aioseo_sitemap_exclude_terms

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

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.4.8.1.1

apply_filters('aioseo_sitemap_exclude_terms') is found 1 times:

  • /app/Common/Sitemap/Helpers.php line 472
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
            $ids = apply_filters( 'aioseo_sitemap_exclude_posts', $ids, $type );
        }
     
        if ( 'excludeTerms' === $option ) {
            $ids = apply_filters( 'aioseo_sitemap_exclude_terms', $ids, $type );
        }
     
        return count( $ids ) ? esc_sql( implode( ', ', $ids ) ) : '';
    }
     
    /**