-
-
Save braddalton/6137063 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'post_class', 'be_first_post_class' ); | |
/** | |
* First Post Class | |
* Adds a class of 'first' to the first post | |
* | |
* @author Bill Erickson | |
* @link http://www.billerickson.net/code/first-post-class | |
* | |
* @param array $classes | |
* @return array | |
*/ | |
function be_first_post_class( $classes ) { | |
global $wp_query; | |
if( 0 == $wp_query->current_post ) | |
$classes[] = 'first'; | |
return $classes; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment