gpt4 book ai didi

wordpress - 重写类别 wordpress

转载 作者:行者123 更新时间:2023-12-04 21:20:41 27 4
gpt4 key购买 nike

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

我有一个类别“ 照片”,并且只针对这个类别。

我只想从/category/photos重写它至 /photos

最佳答案

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

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

请记住重新加载您的重写设置:转到设置 -> 固定链接,然后单击保存按钮 - 无需更改。

关于wordpress - 重写类别 wordpress,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12528800/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com