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 returns a normal WP page, but no content, because nothing technically exists for the URL.
Leave a Reply
You must be logged in to post a comment.
There is an action specifically for this:
That should load the 404.php template in your theme, if you have it. Otherwise, it will fall back to index.php.
This will also trigger a HTTP 404 status code.
For more information see parse_query.
Add a 404.php to your theme and look if it is called.
Sample 404.php
What is more important: the real HTTP headers, here the status code. You can see it with your browsers developer tools under network. Here is a screen shot for
http://wordpress.stackexchange.com/404
in Opera Dragonfly:See full size image
If you still get a status code 200, look into the global variables
$wp
and$wp_query
. They will tell you more details about the fetched resource.