Created
January 18, 2015 19:00
-
-
Save shahadat014/5b43b5e3b30b3ba824f9 to your computer and use it in GitHub Desktop.
Homepage/Front page only conditional code wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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