- This topic has 1 reply, 1 voice, and was last updated 9 years, 9 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › Most recent posts on home page
Hi,
Is there a way to make the most recent posts show up on the home page in a three column format?
Thank you.
I found this tutorial, http://www.billerickson.net/a-better-and-easier-grid-loop/, but I’m not sure how to change it so the three columns are only on the home page.
/**
* 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 ) {
// Don’t run on single posts or pages
if( is_singular )
return $classes;
$classes[] = ‘one-third home’;
global $wp_query;
if( 0 == $wp_query->current_post || 0 == $wp_query->current_post % 3 )
$classes[] = ‘first’;
return $classes;
}
add_filter( ‘post_class’, ‘be_archive_post_class’ );
Any help would be much appreciated.