Advertisement
lorro

WooCommerce - Insert after archive product items

May 21st, 2015
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.   // code goes in functions.php for your child theme
  3.   // insert content after product items on the archive page
  4.   // not after category items on the archive page
  5.   add_action('woocommerce_after_shop_loop_item', 'after_product_item');
  6.   function after_product_item() {
  7.     echo 'MYCODE';
  8.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement