Excluding posts from XML Sitemap using Filter
-
Hi,
I’m trying to exclude posts manually from XML sitemap using ‘wpseo_sitemap_entry” filter but so far have no luck.
This is my code:
function sitemap_exclude_post( $url, $type, $post) { if($post->ID == 6298 ) { return false; } return $url; } add_filter( 'wpseo_sitemap_entry', 'sitemap_exclude_post', 1, 3 );
Can someone plz have a look and see what I’m doing wrong?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Excluding posts from XML Sitemap using Filter’ is closed to new replies.