Advertisement
lorro

WooCommerce - Add text after shop content

Nov 19th, 2017
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2.   // WooCommerce - Add text after shop content
  3.   add_action( 'woocommerce_after_main_content', 'my_text', 20 );
  4.   function my_text() {
  5.     if( is_shop() ) {
  6.       print '<p>My text here</p>';
  7.     }
  8.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement