與WordPress,稱site_url()
返回完整的網站URL(http://www.example.com
) 我試圖做的是增加在與過濾網址的結尾東西(add-something-here
)。編輯SITE_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');
不工作,我得到一個沒有錯誤的空白頁 – Fredmat 2013-03-16 22:56:30