Any Template Tag?
-
Haven’t looked in the code but i know its better to use a function rather than short code to load the slider.
So this isn’t great:
<?php if (is_home() || is_front_page()) { echo do_shortcode("[metaslider id=123]"); // replace 123 with your slideshow ID } ?>This is best
<?php if (is_home() || is_front_page()) { sliders_function_name(); } ?>Whats the name of the function for your slider?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Any Template Tag?’ is closed to new replies.