-
-
Save davidperezgar/3b1390ced902070ec9bb5dcac6f62b26 to your computer and use it in GitHub Desktop.
Grid Loop using post class
This file contains 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
<?php | |
/** | |
* Archive Post Class | |
* @since 1.0.0 | |
* | |
* Breaks the posts into three columns | |
* @link http://www.billerickson.net/code/grid-loop-using-post-class | |
* | |
* @param array $classes | |
* @return array | |
*/ | |
function be_archive_post_class( $classes ) { | |
global $wp_query; | |
if( ! $wp_query->is_main_query() ) | |
return $classes; | |
$classes[] = 'one-third'; | |
if( 0 == $wp_query->current_post % 3 ) | |
$classes[] = 'first'; | |
return $classes; | |
} | |
add_filter( 'post_class', 'be_archive_post_class' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment