Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Anh Tran

    (@rilwis)

    Hi @alriksson,

    You should modify the post query to exclude posts by IDs. Here is the snippet to do that:

    add_filter( 'slim_seo_sitemap_post_type_query_args', function( $query_args ) {
    $query_args['post__not_in'] = [1, 2, 3];
    return $query_args;
    } );
    Thread Starter Rookie

    (@alriksson)

    thanks!

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