• Resolved ibrahimpak

    (@ibrahimpak)


    I want to exclude out of stock products in sitemaps.

    I am trying the following code for this, but then the product sitemap link does not open and it says “a critical error has been encountered” can anyone help?

    Here is the code

    add_filter( 'wp_sitemaps_posts_entry', 'exclude_no_stock_products',10,2);
     function exclude_no_stock_products( $entry, $post ) {
       if ( ! $product->is_in_stock() ) { 
           return false;
       }
       return $entry;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Exclude out of stock products from sitemap’ is closed to new replies.