Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created June 8, 2012 16:18
Show Gist options
  • Save DrewAPicture/2896578 to your computer and use it in GitHub Desktop.
Save DrewAPicture/2896578 to your computer and use it in GitHub Desktop.
Display unfiltered events content on single
if ( is_single() && in_category( 'recent-events' ) ) {
$content = get_the_content();
echo $content;
} else {
// Main loop content goes here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment