Hi there,
This thread is coming from https://kriesi.at/support/topic/blog-category-frontpage-view/page/2/#post-399188
How can I add its featured image for each blog if I see it in a tag page view?
Thanks,
Orhan
Hey erkuto!
Thank you for using Enfold.
For tag pages, use this:
add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2);
function avia_change_tag_blog_layout($layout, $context){
if($context == 'tag') $layout = 'single-big';
return $layout;
}
Cheers!
Ismael
Thank you! It worked :)