如何在Wordpress永久链接中包含自定义字符串?

时间:2010-07-15 15:02:55

标签: php wordpress permalinks

我对WordPress的固定链接的工作方式感到有些困惑,特别是Wordpress自己的用法之外。我的永久链接就像:

%post_id%-%post_name%

但是在single.php中,我想将另一个链接放到页面本身但是使用不同的查询字符串。单击它时,永久链接结构可能如下所示:

%mystring%-%post_id%-%post_name%

我想从$_GET['action']获取值,所以:

$_GET['action'] = %mystring%

我的计划是将其解释为:

if('xx' == $_GET['action']){
   //do xx stuff
} else if ('yy'==$_GET['action']){
   //do yy stuff
} else {
   //show the single post as a single.php always shows
}

这意味着,我想要可选地解析$_GET['action']。如果我不解析它,即使它在查询字符串中可用,我希望页面正确呈现。

为了完成这项工作,我应该在哪里工作?另外,我如何形成<a>标记的链接?通常我们以这种方式建立链接:

<a href="'.the_permalink().'">TEXT</a>

但你已经知道了,我需要在帖子的原始永久链接之前添加一些文字。

提前致谢。

1 个答案:

答案 0 :(得分:7)

保留固定链接结构,并查看my answer on custom rewrite rules

您可以像这样调整代码;

function my_rewrite_rules($rules)
{
    global $wp_rewrite;

    // the key is a regular expression
    // the value maps matches into a query string
    $my_rule = array(
        '(.+)/(.+)/?$' => 'index.php?pagename=matches[2]&my_action=$matches[1]'
    );

    return array_merge($my_rule, $rules);
}
add_filter('page_rewrite_rules', 'my_rewrite_rules');


function my_query_vars($vars)
{
    // this value should match the rewrite rule query paramter above

    // I recommend using something more unique than 'action', as you
    // could collide with other plugins or WordPress core

    $my_vars = array('my_action');
    return array_merge($my_vars, $vars);
}
add_filter('query_vars', 'my_query_vars');

现在页面my_page应该在http://example.com/whatever/my_pagehttp://example.com/my_page处可用。

您可以使用whatever获取get_query_var('my_action')的值。

声明

在查看儿童页面或页面附件时,这可能会产生不良影响。你可以通过在重写中传递一个标识符来解决这个问题,这可能会影响到;

http://example.com/my_identifier/whatever/page

注意:如果您希望这样做,则需要编辑重写规则。每次更改代码时,都需要重新保存永久链接结构以“刷新”规则。