使用 WordPress,调用site_url()
会返回完整的站点 URL ( http://www.example.com
) 我要做的是add-something-here
在带有过滤器的 URL 的末尾添加一些东西 ()。
我期待的结果是:
http://www.example.com/add-something-here
有人知道如何用过滤器做到这一点吗?
我尝试了以下但没有成功:
function custom_site_url($url) {
return get_site_url('/add-something-here');
}
add_filter('site_url', 'custom_site_url');