Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Tsunamijaan/072e72390d1a61aa834d65cbc9a6af60 to your computer and use it in GitHub Desktop.

Select an option

Save Tsunamijaan/072e72390d1a61aa834d65cbc9a6af60 to your computer and use it in GitHub Desktop.
Add a Special Class for the First Post in the Loop
add_filter( 'post_class', 'post_class_example' );
function post_class_example( $classes ) {
global $wp_query;
if ( 0 == $wp_query->current_post ) {
$classes[] = 'first-post';
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment