Tagged Questions
0
votes
0answers
60 views
permalink and add_rewrite_rule - error 404
I'd like to have comments in a separate page with a dedicated template only for posts in a specific category (slug shops). Example: mysite.com/post-incatshops --> mysite.com/post-incatshops/comment
...
1
vote
0answers
71 views
Getting 404 error on my wp rewrite error
The code I'm using to rewrite urls with query vars:
function add_query_vars($aVars) {
$aVars[] = "city";
$aVars[] = "address";
$aVars[] = "pg";
return $aVars;
}
// hook add_query_vars ...
1
vote
1answer
262 views
All pages after level 1 showing 404 after WordPress migration plugin - how to fix?
I am in the process of moving my blog away from GoDaddy (yey!) to HostGator. I used the migration plugin on GoDaddy tat created the gz archive of the database, and I copied all my files over to the ...
0
votes
1answer
226 views
Custom nested taxonomies pagination problem [closed]
I'm experiencing a problem with the pagination of my custom taxonomies which lead to a 404 instead of the taxonomy-product_brand.php template
Here is some code:
...
2
votes
2answers
671 views
How to trigger 404 for custom query var?
How can you trigger a 404 when using custom query vars? I've got re-write rules written for a custom query var, but if you were to request a URL for the query var that should technically be a 404 it ...