In your index.php theme file use this check whether the page is home page or not.
<?php if (is_home()) { ?>
<?php } ?>
If you have static front page in your theme use the below condition to check
<?php if (is_page('Home')) { ?>
<?php } ?>
<?php if (is_home()) { ?>
<?php } ?>
If you have static front page in your theme use the below condition to check
<?php if (is_page('Home')) { ?>
<?php } ?>
No comments:
Post a Comment