How to change custom post type, blog post and page permalink by template?
modify post works different than modify page than modify custom post type permalink. Here is how to modify all of them within your template code only and give the whole page a custom url structure. modify custom post type permalink add_action( ‘init’, ‘rewriteCustomPostUrls’ ); function rewriteUrls() { global $wp_rewrite; $version = ‘/product/%product%/version/%version%’; $wp_rewrite->add_rewrite_tag( “%product%”, ‘([^/]+)’, … Read more