WordPress的自定义网址书面方式不工作(Wordpress custom url writti

2019-10-29 07:11发布

我要创造我自己的网址这样的http://本地主机/ wptest /内容/项目/培训,会议/

我创造我自己的插件,使用此代码。

add_action('init','wpyog_add_rewrite_rules');
add_action('init','wpyog_add_rewrite_rules');

function wpyog_add_rewrite_rules(){
      add_rewrite_rule('^content/([^/]*)/([^/]*)/?','index.php? content_category=$matches[1]content_slug=$matches[2]','top');
}

add_action('query_vars','wpyog_add_query_vars');
function wpyog_add_query_vars( $qvars ) {
    $qvars[] = 'content_category';
    $qvars[] = 'content_slug';
    return $qvars;
}

add_action('template_redirect','wpyog_template_redirect');
function wpyog_template_redirect(){
   if( get_query_var('content_slug') && get_query_var('content_category') ) 
   {
      include( WPYog_Ukraine_PATH.'templates/frontend_template.php' );
      exit();
   }
}

但它不工作的节目404页。 当我使用这个URL其作品的http://本地主机/ wptest /类别=程序&category_slug =培训,会议

如何创建前端链接。 因此,它能够满足我们的重新写入规则

文章来源: Wordpress custom url writting not working