Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // WooCommerce - Add text after shop content
- add_action( 'woocommerce_after_main_content', 'my_text', 20 );
- function my_text() {
- if( is_shop() ) {
- print '<p>My text here</p>';
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement