wpseo_exclude_from_sitemap_by_post_ids хук-фильтр . Yoast 1.0
Filter: 'wpseo_exclude_from_sitemap_by_post_ids' - Allow extending and modifying the posts to exclude.
Использование
add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', 'filter_function_name_3923' ); function filter_function_name_3923( $posts_to_exclude ){ // filter... return $posts_to_exclude; }
- $posts_to_exclude(массив)
- The posts to exclude.
Где вызывается хук
wpseo_exclude_from_sitemap_by_post_ids
yoast/inc/sitemaps/class-post-type-sitemap-provider.php 303
$excluded_posts_ids = apply_filters( 'wpseo_exclude_from_sitemap_by_post_ids', $excluded_posts_ids );