Is it possible to rewrite only one category ?
I have a category "Photos" and just for this category.
I just want to rewrite it from /category/photos
to /photos
Is it possible to rewrite only one category ?
I have a category "Photos" and just for this category.
I just want to rewrite it from /category/photos
to /photos
You can do it with WP Rewrite API. Add this to functions.php
Remember to reload your rewrite settings: go to Settings -> Permalinks and click on Save button - no changes needed.
The Yoast SEO plugin has this function build in, I recommend this plugin in general.
no-category-base-wpml only does this If you don't want to install a plugin for this. Around the web there are many tutorials which do this:
Too enable this for just one category I would advise the following:
photos
.query_posts
* getting the category 'photos'category.php
file.Not tested but should work. Because the page has the correct URL and should include the category. Questions, aks.
*query_posts is bad for performance if you want to do it totally correct use the
pre_get_posts
filter. It's requires more knowledge.