Skip to content

Instantly share code, notes, and snippets.

@seoagentur-hamburg
Created April 16, 2013 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seoagentur-hamburg/5397697 to your computer and use it in GitHub Desktop.
Save seoagentur-hamburg/5397697 to your computer and use it in GitHub Desktop.
Die richtige Art, um is_front_page() und is_home() korrekt zu nutzen.
<?php
if ( is_front_page() && is_home() ){
// Default homepage
} elseif ( is_front_page()){
//Static homepage
} elseif ( is_home()){
//Blog page
} else {
//everything else
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment