I need to add a “last” class to the last post that appears in loop.php.

Can someone tell me how to accomplish this?

2 s
2

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;
});

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *