Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Tsunamijaan/8620271bbc56f0fe2c4b1fcb5189b543 to your computer and use it in GitHub Desktop.
Save Tsunamijaan/8620271bbc56f0fe2c4b1fcb5189b543 to your computer and use it in GitHub Desktop.
Homepage/Front page only conditional code wordpress
Homepage only data with default data ===============
<?php if( is_home() || is_front_page() ) : ?>
<!-- Homepage Only Code -->
<?php else : ?>
<!-- Other Page Code -->
<?php endif; ?>
Homepage only data =============
<?php if( is_home() || is_front_page() ) : ?>
<!-- Homepage Only Code -->
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment