I’ve written Rewrite rules for my custom post types. they work well except that WP doesn’t update the url in the User Agent when the redirect_url doesn’t match the requested_url.
everything else works great though including my custom permastructs (‘post_type_link’) and custom template options (‘single-template’).
my rules:
// custom URL rewrite for Album posts
add_action( 'init', 'gregory_rewrite_album_link' );
function gregory_rewrite_album_link()
{
// album--%album_slug%/ OR album/%album_slug%/
// preferred permastruct: album--%album_slug%/
add_rewrite_rule(
'^album(/|--)([^/]+)/?$',
'index.php?post_type=gregory-cpt-album&name=$matches[2]',
'top' );
}
// custom URL rewrite for Track posts
add_action( 'init', 'gregory_rewrite_track_link' );
function gregory_rewrite_track_link()
{
// accepts and rewrites the following permutations:
// where album would be: album--%album_slug% OR album/%album_slug%
// where track would be: track--%track_slug% OR track/%track_slug%
// preferred permastruct: album--%album_slug%/track--%track_slug%/
add_rewrite_rule(
'^(album(/|--)[^/]+/)?track(/|--)([^/]+)/?$',
'index.php?post_type=gregory-cpt-track&name=$matches[4]',
'top' );
}
I was wondering what the differences were between using add_rewrite_rule(), appending rules directly to $wp_rewrite->rules, and hooking into rewrite_rules_array? are there any differences? would one of the alternatives force WP to update the url in the User Agent when the targeted post’s permalink differed to the requested url?
one example of the url not updating… the album and track posts are linked by a mutual taxonomy term. the hook into ‘post_type_link’ for tracks finds the linked album and inserts its slug into the permalink. the Rewrite rules above make sure that both new and traditional permastructs work, but requesting this url /album/serenity/track--beetle-attack/
will find the post but not update the url to /album--serenity/track--beetle-attack/
.
it’s unlikely that anyone will use the traditional permastructs because I won’t advertise them or use them in my site, but it’d be a nice extra to see the url’s get updated in the User Agent anyway, if possible.
cheers,
Gregory
First of all use
add_rewrite_rule()
over messing directly with$wp_rewrite->rules
if possible. The latter is a bit low-level.Regarding the ‘url not updating’ – this isn’t the job of the rewrite rules. These simply point urls to their content, but they don’t update the user’s address bar.
The file that is responsible for this is /wp-includes/canonical.php. In particular the function
redirect_canonical()
hooked ontotemplate_redirect
.This
redirect_canonical()
has its own filter: