Skip to content

Instantly share code, notes, and snippets.

@shahadat014
Created January 18, 2015 19:00
Show Gist options
  • Select an option

  • Save shahadat014/5b43b5e3b30b3ba824f9 to your computer and use it in GitHub Desktop.

Select an option

Save shahadat014/5b43b5e3b30b3ba824f9 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