添加重写标签WordPress函数add_rewrite_tag

如果你对你的wordpress网站url不够满意,并且不想大范围修改URL那么可以使用这个方法。add_rewrite_tag函数可以用来添加自定义查询字符串,一般和add_rewrite_rule() 配合使用为自定义模板添加自定义URL重定向规则。今天就分享一下添加重写标签WordPress函数add_rewrite_tag的基础知识。

添加重写标签WordPress函数add_rewrite_tag (https://www.wpzt.net/) WordPress基础教程 第1张

add_rewrite_tag( string $tag, string $regex, string $query = ” )

描述:

$query参数是可选的。如果省略了它,则必须确保在“init”钩子上或之前调用它。这是因为$query默认为“$tag=”,为此必须添加一个新的查询var。

参数:

$tag

(string) (必需) 新重写标记的名称

$regex

(string) (必需) 正则表达式以替换重写规则中的标记。

$query

(string) (可选) 字符串来附加到重写的查询。必须以“=”结尾。默认空字符

简单示例:

在下面的例子中,假设一个站点有一个自定义的分类法‘Location’,并且所有的帖子都被分配了一个类似于“Paris”或“Madrid”的位置术语。我们添加一个重写标记“%Location%”来建立位置查询var。我们还添加了一个重写规则,以便正确地处理一个URL,比如ex**ple.com/goto/**dand/bank-lodging/。

add_action(‘init’, ‘add_my_rewrites’);

function add_my_rewrites() {

add_rewrite_tag(‘%location%’, ‘([^&**p;]+)’, ‘location=’);

add_rewrite_rule(‘^goto/([^/]*)/([^/]*)/?’,’index.php?location=$**tches[1]&**p;n**e=$**tches[2]’,’top’);

}

尽管重写标记看起来就像per**link结构标记,但是如果您试图在per**link结构中使用重写标记,WordPress生成的URL看起来将类似于ex**ple.com/goto/%location%/budget-lodging/。正确的术语并不像您可能预期的那样替换重写标记。要使您的标记行为像一个结构标记,使用“post_link”筛选器将标记替换为适当的术语。

// Assign value to %location% rewrite tag

add_filter(‘post_link’, ‘my_filter_post_link’, 10, 2 );

function my_filter_post_link( $per**link, $post ) {

// bail if %location% tag is not present in the url:

if ( false === strpos( $per**link, ‘%location%’))

return $per**link;

$terms = wp_get_post_terms( $post->ID, ‘location’);

// set location, if no location is found, provide a default value.

if ( 0 < count( $terms ))

$location = $terms[0]->slug;

else

$location = ‘timbuktu’;

$location = urlencode( $location );

$per**link = str_replace(‘%location%’, $location , $per**link );

return $per**link;

}

每当您更改与重写API相关的内容时,不要忘记刷新重写规则!这可以通过转到固定链接设置并单击保存更改来完成,而无需使用代码。您实际上不需要在设置屏幕上进行任何更改。

© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容