Skip to content

Instantly share code, notes, and snippets.

@baczoni
Created April 24, 2012 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baczoni/2480989 to your computer and use it in GitHub Desktop.
Save baczoni/2480989 to your computer and use it in GitHub Desktop.
Wordpress: Additional post classes
<?php
function additional_post_classes( $classes ) {
global $wp_query;
if( $wp_query->found_posts < 1 ) {
return $classes;
}
if( $wp_query->current_post == 0 ) {
$classes[] = 'post-first';
}
if( $wp_query->current_post % 2 ) {
$classes[] = 'post-even';
} else {
$classes[] = 'post-odd';
}
if( $wp_query->current_post == ( $wp_query->post_count - 1 ) ) {
$classes[] = 'post-last';
}
return $classes;
}
add_filter( 'post_class', 'additional_post_classes' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment