Add class to first post in the loop
wordpress snippet
If you wanted to add emphasis to the first post in your blog adding this snippet to the functions.php of your wordpress theme will add the class of “first” to your first post.
snippet : PHPcopy
add_filter( 'post_class', 'wps_first_post_class' );
function wps_first_post_class( $classes ) {
global $wp_query;
if( 0 == $wp_query->current_post )
$classes[] = 'first';
return $classes;
}
this months featured snippets
- Fabio Simoes
- http://wpsnipp.com Kevin Chard
- widoz
- http://wpsnipp.com Kevin Chard
- widoz
- http://wpsnipp.com Kevin Chard











