Remove slug in taxonomy url

Just wondering, how can remove slugs from some URLS. I’m using a custom post type called exhibitors, and some taxonomies to define those exhibitors (eg: featured-guests, publishers etc.):

Right now I have this: http://thisurl.com/exhibitor_filters/featured-guests/

I would like this: http://thisurl.com/featured-guests/

I’ve been playing around with the rewrite / slug in wp, but so far no dice.

Suggestions?

Thanks!

-Edit-

Fun times, now I’m just getting 404 errors for everything involving custom-post-types and taxonomy-terms. I’m going to see if I can at least get this thing to stop barfing-out so much first…thanks for your general suggestions guys.

5 s
5

This by default is not possible, and using the CPT and Custom Tax registration APIs, is not possible.

And for good reason.

It’s all to do with permalink and slug clashes, and removing ambiguity. Admittedly there are cases where unique URLs that never overlap are not allowed by the system for this reason ( false negative ).

So I recommend you decide on a replacement for 'exhibitor_filters' such as 'exhibitors', or 'filters' and use that as your slug in the rewrite option when registering.

If you really want to do it the way you desire however, you will need to add rewrite rules. This can be problematic, as you run the real risk of clashes ( do we load the page 'about' or the exhibitor_filter term 'about'? ), and the ordering and priorities of your hooks will play a big role.

e.g.

function ex_rewrite( $wp_rewrite ) {

    $feed_rules = array(
        '(.+)'    =>  'index.php?exhibitor_filter=". $wp_rewrite->preg_index(1)
    );

    $wp_rewrite->rules = $wp_rewrite->rules + $feed_rules;
}
// refresh/flush permalinks in the dashboard if this is changed in any way
add_filter( "generate_rewrite_rules', 'ex_rewrite' );

The above code will work for individual terms, though it will need modifying for heirarchical URLs and taxonomies.

Place the code in functions.php of your theme, or your themes associated plugin.

Warning: You will need to be careful not to have clashing permalinks, and you will need to be aware of the ordering of which rules come first. Use the monkeyman rewrite analyser plugin to test this. You have been warned.

Leave a Comment