Advertisement
lorro

WooCommerce - Add category name after result count

Aug 8th, 2015
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2.   // Add category name after result count
  3.   // add this in result-count.php before the last line:
  4.   // the edited file goes at:
  5.   // wp-content/themes/my-theme-name/woocommerce/loop/result-count.php
  6.   if (is_product_category()) {
  7.     global $wp_query;
  8.     $cat = $wp_query->get_queried_object();
  9.     echo ' for '.print_r($cat->name, true);
  10.   }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement