Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1475609

    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?

    #1475621

    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

    #1475695

    Thank you Ismael. That worked perfectly.

    #1475700

    Hi,

    Great! Glad it worked. Please let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How can I add Categories to a Post Slider’ is closed to new replies.