Advertisement
lorro

WooCommerce - Add text after shop and category loop

Nov 3rd, 2016
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. // add some text after the loop on the shop and category pages
  3. // snippet goes in functions.php for your child theme
  4.  
  5. add_action( 'woocommerce_after_main_content', 'add_my_text', 20 );
  6. function add_my_text() {
  7.   print '<p>This is my extra text.</p>';
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement