Wordpress 中的自定义重写规则

问题描述 投票:0回答:1

我在内部 WordPress 重写规则方面遇到了麻烦。 我已阅读此主题,但仍然无法获得任何结果:wp_rewrite in a WordPress Plugin

我解释一下我的情况:

1)我有一个名为“myplugin_template.php”的 page_template,与名为“mypage”的 WordPress 页面关联。

<?php
get_header();
switch ($_GET['action']) {
  case = "show" {
  echo $_GET['say'];
  }
}
get_footer();
?>

2)我需要为此链接创建重写规则:

http://myblog/index.php?pagename=mypage&action=show&say=hello_world

如果我使用这个网址,所有事情都可以正常工作,但我想达到这个结果:

http://myblog/mypage/say/hello_world/

我真的不想破解我的 .htaccess 文件,但我不知道如何使用内部 WordPress 重写器来做到这一点。

php wordpress mod-rewrite url-rewriting
1个回答
7
投票

您需要添加自己的重写规则和查询变量 - 将其弹出

functions.php
;

function my_rewrite_rules($rules)
{
    global $wp_rewrite;

    // the slug of the page to handle these rules
    $my_page = 'mypage';

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

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


function my_query_vars($vars)
{
    // these values should match those in the rewrite rule query string above
    // I recommend using something more unique than 'action' and 'show', as you
    // could collide with other plugins or WordPress core
    $my_vars = array(
        'my_action',
        'my_show'
    );

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

现在在您的页面模板中,将

$_GET[$var]
替换为
get_query_var($var)
,如下所示;

<?php
get_header();
switch (get_query_var('my_action')) {
    case = "show" {
        echo esc_html(get_query_var('my_say')); // escape!
    }
}
get_footer();
?>
© www.soinside.com 2019 - 2024. All rights reserved.