Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Display new taxonomy in post

Home / Forums / Virtue Theme / Display new taxonomy in post

This topic is: Not Resolved
[Not Resolved]
Posted in: Virtue Theme
August 24, 2015 at 8:42 am

Hey,

I used register_taxonomy() in my child theme functions.php to register a new hierarchical taxonomy, and it works fine. Now, I’d like them te be displayed next to the ‘Posted in’ categories of each posts (or next to the tags). How can I do that please?

Also, I’d like to remove the sidebar from the new taxonomy pages. For tags I had done that
add_filter('kadence_display_sidebar', 'tag_sidebar');

function tag_sidebar($sidebar) {
if (is_tag()) {
return false;
}
return $sidebar;
}

What shall I enter for my custom term?

Thanks for your support,

Cheers,

  • The forum ‘Virtue Theme’ is closed to new topics and replies.