Advertisement
Fany_VanDaal

Zobrazení produktů jen z dané kategorie a nezobrazovat produ

Apr 26th, 2020
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1. // zobrazení produktů jen z dané kategorie a nezobrazovat produkty ze subkategorií
  2. function exclude_product_cat_children($wp_query) {
  3.     if ( isset ( $wp_query->query_vars['product_cat'] ) && $wp_query->is_main_query()) {
  4.         $wp_query->set('tax_query', array(
  5.             array (
  6.                 'taxonomy' => 'product_cat',
  7.                 'field' => 'slug',
  8.                 'terms' => $wp_query->query_vars['product_cat'],
  9.                 'include_children' => false
  10.             )
  11.         ) );
  12.     }
  13. }
  14. add_filter('pre_get_posts', 'exclude_product_cat_children', PHP_INT_MAX );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement