To Show Only On Home Page Not Show on Other Page
<?php
if ( is_front_page() ) {
// This is the blog posts index
get_sidebar( 'blog' );
} else {
// This is not the blog posts index
get_sidebar();
}
?>
<?php echo $postid = get_the_ID(); ?>
<?php if($postid == '418') { ?> style="background-color:white;" <?php } ?>
Comments
Post a Comment