Tuesday, April 8, 2014

Check if page is the home page in Wordpress

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 } ?>

No comments:

Post a Comment