在我的博客中,我正在使用一个百科全书插件。不幸的是,该插件使用了我博客中的存档模板。
如何为百科全书使用不同的页面/模板?以下是插件的功能:(从插件作者那里,我没有得到任何支持)。
function Define_Rewrite_Rules(){
$post_type = Get_Post_Type_Object($this->post_type);
$archive_url_path = $post_type->rewrite[\'slug\'];
$this->rewrite_rules[SPrintF(\'%s/filter:([^/]+)/?$\', $archive_url_path)] = SPrintF(\'index.php?post_type=%s&filter=$matches[1]\', $this->post_type);
$this->rewrite_rules[SPrintF(\'%s/filter:([^/]+)/page/([0-9]{1,})/?$\', $archive_url_path)] = SPrintF(\'index.php?post_type=%s&filter=$matches[1]&paged=$matches[2]\', $this->post_type);
}