I need to add a “last” class to the last post that appears in loop.php.
Can someone tell me how to accomplish this?
I need to add a “last” class to the last post that appears in loop.php.
Can someone tell me how to accomplish this?
assuming you’re using post_class()
:
add_filter('post_class', function($classes){
global $wp_query;
if(($wp_query->current_post + 1) == $wp_query->post_count)
$classes[] = 'last';
return $classes;
});