Paulund
2012-02-13 #wordpress

Check If On Front Page In Wordpress

In Wordpress you can define a different page to be used as the front page for your blog. It doesn't have to be the index.php page it can be any page template used on your Wordpress blog. You can use a page template as the front page and any other page, but you might want to only display things on the front page of the blog and use the page template else where. Here is a Wordpress snippet to add code to the page template if it's being used as the front page.


if(is_front_page()) {
     // Enter code here
}