I have a Post Slider set to show the title only of posts. I’d like to add as text all of the Categories each post is attached to to display under the title. How can I do this please?
Hey DynamiteDesigns,
Thank you for the inquiry.
Please add this filter in the functions.php file to display the post categories:
add_filter('avf_postslider_show_catergories', 'avf_postslider_show_catergories_mod', 10, 1);
function avf_postslider_show_catergories_mod($category) {
$show_cats = 'show_business';
return $show_cats;
}
Best regards,
Ismael
Thank you Ismael. That worked perfectly.