gpt4 book ai didi

wordpress - 通用 wordpress 链接过滤器

转载 作者:行者123 更新时间:2023-12-04 10:18:24 24 4
gpt4 key购买 nike

每个人!我需要添加域前缀 www,而不是手写,每个过滤器为 post_link、page_link、category_link 等 - 所有添加 www 的 url 都有一个全局过滤器。如何更改数据库中站点 url 中的常规设置或更改选项或 htaccess 的方法 - 只是不适合。预先感谢您的回复。

最佳答案

如果您无法通过 wp-admin 更改它,则可以使用以下内容:

        add_filter( 'post_link', array($this, 'changePermalinks'), 10, 3);
add_filter( 'page_link', array($this, 'changePermalinks'), 10, 3);
add_filter( 'post_type_link', array($this, 'changePermalinks'), 10, 3);
add_filter( 'category_link', array($this, 'changePermalinks'), 11, 3);
add_filter( 'tag_link', array($this, 'changePermalinks'), 10, 3);
add_filter( 'author_link', array($this, 'changePermalinks'), 11, 3);
add_filter( 'day_link', array($this, 'changePermalinks'), 11, 3);
add_filter( 'month_link', array($this, 'changePermalinks'), 11, 3);
add_filter( 'year_link', array($this, 'changePermalinks'), 11, 3);

function changePermalinks($permalink, $post) {

if ( strpos($permalink, '://www.') ) return $permalink;

return str_replace('://', '://www.', $permalink);
}

关于wordpress - 通用 wordpress 链接过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22014167/

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