• We want to use your plugin to display portfolio items. We have gotten this to work by using this code

    <?php
    add_filter( 'novo_map_allowed_post_type', 'novo_map_post_types' );
    function novo_map_post_types($types) {
    $types = array( 'post', 'page', 'portfolio', 'thegem_pf_item' );
    return $types;
    }

    It will show the portfolio items but I want to filer by tag and category. None of the tags from the portfolio post type are showing in the box. I can only see the tags from standard posts. Is there a way to allow for tags from the portfolio post type as well?

  • The topic ‘Novo Map – Use Tags and Categories from Custom Post Type’ is closed to new replies.