本文介绍了重写类别WordPress的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以仅重写一个类别?

Is it possible to rewrite only one category ?

我有一个类别 照片,并且仅用于此类别。

I have a category "Photos" and just for this category.

我只想将其从 / category / photos 重写为 / photos

推荐答案

您可以使用WP Rewrite API来完成。
将此添加到functions.php

You can do it with WP Rewrite API.Add this to functions.php

add_action('init', 'register_rewrites');
function register_rewrites() {
   add_rewrite_rule('^photos$', 'index.php?category_name=photos','top');
}

记住要重新加载您的重写设置:转到Settings-> Permalinks并单击保存按钮-无需更改。

Remember to reload your rewrite settings: go to Settings -> Permalinks and click on Save button - no changes needed.

这篇关于重写类别WordPress的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 01:53