Add shortcode to all pages except front page
-
Hello.
I need to do a do_shortcode() on every page storefront_content_top
all works ok except that i need it not to be in the front page. All other pages than the front page. is_front_page() and is_home() aren’t working….i am doing this through a self made plugin.
Is there a better place to put it than storefront_content_top, if i change the theme in the future?
My code so far:
// if (!is_home()) // not working. add_action( 'storefront_content_top', 'hh_show_shortcode', 1 ); function hh_show_shortcode() { echo do_shortcode('[blah]'); // echo "sample text"; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Add shortcode to all pages except front page’ is closed to new replies.