Skip to content

Instantly share code, notes, and snippets.

@plavet
Created May 23, 2012 10:38
Show Gist options
  • Save plavet/2774503 to your computer and use it in GitHub Desktop.
Save plavet/2774503 to your computer and use it in GitHub Desktop.
Wordpress - IF/ELSE
<?php if ( is_front_page() ) { ?>
<h2 class="naslov"><?php bloginfo('name'); ?></h2>
<?php } elseif ( is_page() ) { ?>
<h2 class="naslov"><?php the_title(); ?></h2>
<?php } else { ?>
<?php } ?>
/*
** http://codex.wordpress.org/Conditional_Tags
**
**
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment