Hi, I wonder if I can control or change the way a category is shown which is the blog style I choose. Can I make the blog look one way and the categories look another way?
Hey DROR!
Thank you for using Enfold.
You can use this filter on functions.php to change the blog style of archive pages:
add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2);
function avia_change_archive_blog_layout($layout, $context){
if($context == 'archive') $layout = 'single-small';
return $layout;
}
Different blog styles are (single-small, single-big, blog-grid, multi-big).
Best regards,
Ismael