Skip to content

Instantly share code, notes, and snippets.

@marisqaporter
Forked from eugenoprea/functions.php
Last active August 29, 2015 14:21
Show Gist options
  • Save marisqaporter/73719036d346b5dc0bb7 to your computer and use it in GitHub Desktop.
Save marisqaporter/73719036d346b5dc0bb7 to your computer and use it in GitHub Desktop.
// Add custom post class to posts in the "Featured" category
add_filter('post_class', 'eo_custom_post_class');
function eo_custom_post_class($classes)
{
$new_class = 'featured-post';
if (in_category('Featured'))
$classes[] = esc_attr(sanitize_html_class($new_class));
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment