Skip to content

Instantly share code, notes, and snippets.

@philipdowner
Created December 29, 2011 17:08
Show Gist options
  • Save philipdowner/1535015 to your computer and use it in GitHub Desktop.
Save philipdowner/1535015 to your computer and use it in GitHub Desktop.
WordPress If/Else
<?php
if ( is_page('my-page-slug') ) {
echo '<img src="'.get_bloginfo('template_url').'/path/to/img.png">';
} else {
get_the_title(); //Or similar code from the template
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment