Rewrite category wordpress

You can do this with a rewrite rule from within WordPress. Take a look at the documentation for add_rewrite_rule.

Something like this:

<?php
add_action('init', 'wpse65855_rewrite');
function wpse65855_rewrite()
{
    add_rewrite_rule(
        '^photos/?$', // the rule regex
        'index.php?taxonomy=category&term=photos', // where you want the rule to go
        'top' // the priority. Make this one go first
    );
}

You can stick that in a plugin.

The downside here is that this is not very portable. You assume that the “Photos” category slug will always be photos, which might not be true on all WP installs. If this is something for yourself, that’s not a big deal — you can be sure that everything works out the way you need it to. If it’s something you’re going to use with clients or release publicly, you’ll need to do more to make it flexible. Like add an admin page where folks can select the category that the /photos base rewrites to, for instance.

Leave a Comment