How to show only on Home Page Not Show on Other Pages Wordpress
<?php
if ( is_front_page() ) {
// This is the blog posts index
get_sidebar( 'blog' );
} else {
// This is not the blog posts index
get_sidebar();
}
?>
Slider show only on Home Page Not Show on Other Pages
<?php
if ( is_front_page() ) {
// This is the blog posts index
echo do_shortcode( "[vtslider]" );
}
?>
Comments
Post a Comment