Tagged: categories, category, enfold
Hi,
I use a custom blog page for my website and have used the grid layout to display the posts. However on my category pages the layout is much different. I would like to carry the same layout on the categories page as well. Is there a way to update this?
Thank you
Hi tvlleaders!
Thank you for using Enfold.
Please add this in the functions.php file:
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2);
function avia_change_category_blog_layout($layout, $context){
if($context == 'archive') $layout = 'bog-grid';
return $layout;
}
Cheers!
Ismael