Hello
I’m having issues finding a way to show the “Categories” with the layout I currently have, I want the blog feed to have the current layout, 3 columns with a large image, and read more text with link but also add the categories.
Browse down to the “Latest News” section on the home page – https://ufcw5.org/
I would like to add the tags/categories to each latest news post on the HomePage?
Thanks
B
Hey schwabino,
Thank you for the inquiry.
We could enable the post categories by adding this snippet or filter in the functions.php file.
add_filter('avf_postslider_show_catergories', 'avf_postslider_show_catergories_mod', 10, 1);
function avf_postslider_show_catergories_mod($category) {
$category = 'show_business'; // or show_elegant
return $category;
}
Default value is “use_theme_default”.
Best regards,
Ismael
Hi schwabino,
Well, yes, it is better to have the child theme and add this code there.
Here are the docs for you:
If you need further assistance please let us know.
Best regards,
Victoria