I’m looking for a list of all possible URLs (or URL patterns) that would deliver content or would otherwise cause WordPress to respond to the request with something other than a 404. Let’s assume a fresh standard install of the current version.
I’ve looked around and there’s lots of documentation on how to create custom URLs to your content or admin area or for various other things, but I haven’t found a comprehensive list of what exists by default. Does such a list exist or is there an easy way to compile it?
Currently I can’t offer a full answer to your question, but here as a starting point a (PHP 5.3+/closure) plugin that dumps the global
WP_Rewrite
object into theshutdown
hook.This doesn’t take redirects into account. If someone would for e.g. write
somewhere, you wouldn’t know that inside
WP_Rewrite
.