最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

url rewriting - I want to add a new tag to Wordpress URL permastruct

programmeradmin2浏览0评论

I installed a TV SHOW plugin on my WordPress install. URLs are like this:

Now I would like to add a specific tag to redirect the user to the right TV show season like this:

This code doesn't seem to work and creates a new set of URLs instead of adding the new %season% tag to the plugin existing permalink structure

       global $wp_rewrite;
        $wp_rewrite->add_rewrite_tag('%tv-show%', '([^/]+)', 'tv_show=');
        $wp_rewrite->add_rewrite_tag('%season%','([^&]+)', 'season=');
        $wp_rewrite->add_permastruct('tv-show', '/tv-show/%tv-show%/%season/');

        $wp_rewrite->flush_rules();
发布评论

评论列表(0)

  1. 暂无评论