Forums
Home / Plugin: Dynamic XML Sitemaps Generator for Google / 404 page included in image-sitemap
(@ewanmathers)
1 week, 2 days ago
The iamge-sitemap.xml is including my 404 page – how can I remove this – like I can do on the sitemap.xml settings?.
The page I need help with: [log in to see the link]
(@wpgrim)
1 week, 1 day ago
Hello @ewanmathers
Seems you are using Custom Page for 404 page, therefore Image Sitemap is collecting this page’s content. There are several ways to exclude this page:
function exclude_404_page( $value, $post_id ) { if ( 14754 == $post_id ) { return false; } return $value;}add_filter( 'xml_sitemap_include_post', 'exclude_404_page', 99, 2 );
Best regards