Disable date based archives for all categories except one
Disable date based archives for all categories except one
Disable date based archives for all categories except one
Actually, /blog/%postname% is the correct setting for permalinks in this case. The /blog/ portion of the permalink will only be added to custom post types if they have been registered using the rewrite => with_front parameter set to true.
WordPress Not Using Template Files After Permalink Update
404 error using Meta for Permalink rewrite
Advanced author permalinks
I think there is enough information to make an answer. Really, only barely a WordPress questions but here you go. First, be aware that the query-string format– ?p=, ?s=, etc– should always work. This is for an Apache(2) server. mod_rewrite must be enabled AllowOverride All or at least AllowOverride File must be set The .htaccess … Read more
Custom $_GET vars in wordpress entry with permalink
An other permalink problem – 404 Error
The tutorial is outdated and it seems it missed to flush the rules. function add_rewrite_rule_and_tag() { global $wp_rewrite; add_rewrite_rule( ‘^physician-profile/([^/]*)/?’, ‘physician-profile?lastName=$matches[1]’, ‘top’ ); add_rewrite_tag( ‘%lastName%’,'([^&]+)’ ); if ( ! isset( $wp_rewrite->rules[‘^physician-profile/([^/]*)/?’] ) ) $wp_rewrite->flush_rules(); return; } add_action( ‘init’, ‘add_rewrite_rule_and_tag’, 99 ); You can access the query var `lastName´ with gloabl $wp_query; $lastName = $wp_query->query_vars[‘lastName’];
U could try one of these http://wordpress.org/extend/plugins/advanced-permalinks/ http://wordpress.org/extend/plugins/custom-permalinks/ I use them when i want to change my permalink structure, hope this helps u!