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.5.9.2

apply_filters('aioseo_sitemap_exclude_terms') is found 1 times:

  • /app/Common/Sitemap/Helpers.php line 453
    			$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 ) ) : '';
    	}
    
    	/**