Skip to content

Instantly share code, notes, and snippets.

@heyitsnoah
Created February 23, 2012 18:54
Show Gist options
  • Save heyitsnoah/1894321 to your computer and use it in GitHub Desktop.
Save heyitsnoah/1894321 to your computer and use it in GitHub Desktop.
Checking To See if a Post is from Percolate
<?php
$category = get_the_category();
// Check to see if the post has the category "percolate" ... You can set the default category in the plugin.
if($category[0]->slug == 'percolate') : ?>
THIS IS WHERE YOU PUT YOUR PERCOLATE SPECIFIC FORMATTING
<?php else : ?>
THIS IS WHERE YOU PUT YOUR FORMATTING FOR NON-PERCOLATE POSTS
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment