Tagged Questions
1
vote
1answer
174 views
Can't add external rewrites
I've got the following code in my functions.php
function add_custom_rewrite_rules(){
add_rewrite_tag('%gallery%','([^/]+)', 'gallery=');
add_rewrite_tag('%album%','([^/]+)', 'album=');
...
3
votes
1answer
1k views
Querystring parameter getting lost in rewrite rule
I have successfully added a custom post type and the permalink structure works great. So, for instance, I've got a custom post type books, and the permalink to a book is /books/the-dictionary.
My ...