I recently needed to display an URL only on the homepage of Kreativ Theme and I did a search and found that there’s function that let’s you do just that very easy called … is_front_page

The function code:
<?php is_front_page(); ?>
Here’s the code containing the conditional IF:
<?php
if ( is_front_page() ) {
// This is a homepage. Put your homepage only content here.
} else {
// This is not a homepage. You can leave it empty and
// even remove the whole "ELSE" part from the IF. Any content
// here will be displayed on all pages , but the homepage.
}
?>
That’s it … thank you Automattic :)






Leave a comment