• Resolved LeonardShelby

    (@leonardshelby)


    Is it possible for individual FAQs to be assigned a “tags” taxonomy?

    For example, on the edit page or edit post screens, there is a box on the right that says “Tags”, with an input text box to assign tags to a given page or post.

    Is it possible for individual FAQs to also support having tags added to them, the same way that pages or posts can?

    Thank you.

    https://www.ads-software.com/plugins/arconix-faq/

Viewing 1 replies (of 1 total)
  • Plugin Author John Gardner

    (@jgardner03)

    It’s not possible with the plugin out of the box but the beauty of WordPress is my plugin can be extended to add such functionality relatively easily. Add the following to your theme’s functions.php file

    (from https://pippinsplugins.com/add-already-registered-taxonomy/)

    add_action('plugins_loaded','add_tags_to_cpt');
    function add_tags_to_cpt(){
        register_taxonomy_for_object_type('post_tag', 'faq');
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Tags taxonomy for FAQs?’ is closed to new replies.