Someone before me set this up to show a full width slider in the header of the index php in a wordpress site. I am setting up a test page to show a different slider in the same way. what php can I add to this to have it look if I am on a different page to show a different slider in the same way?
this is what I currently have…
<?php if (is_front_page() || is_home()) { echo do_shortcode("[metaslider id=5]"); } ?>BUT I want to modify this to display a different slider on a different page… HELP