• Resolved ewanmathers

    (@ewanmathers)


    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]

Viewing 1 replies (of 1 total)
  • Plugin Author WP Grim

    (@wpgrim)

    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

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.