Include Taxonomy slug in post url
Add Custom Taxonomy Tags to Your WordPress Permalinks What you wish to do is have your taxonomy available to use within the Permalink structure e.g. /%actor%/%postname% First you write your taxonomomy as you have already done, but you require additional fields: add_action(‘init’, ‘add_actor_taxonomy’); function add_actor_taxonomy() { if (!is_taxonomy(‘actor’)) { register_taxonomy( ‘actor’, ‘post’, array( ‘hierarchical’ => … Read more