2017-03-17 32 views
0

我試圖添加查詢參數到wordpress博客裏面的所有內部鏈接。添加參數到內部的wordpress鏈接

爲博客上的示例 - 客戶端與土地此鏈接:

www.example.com/?p1=test&p2=test 

我想在博客中的鏈接,例如鏈接後,仍然有一些查詢字符串:

www.example.com/post1/?p1=test&p2=test 

有沒有辦法做到這一點?

感謝

回答

0

是的,你可以做到這一點使用add_query_arg('Key', 'value', 'url'); 欲瞭解更多信息,請訪問此鏈接 https://developer.wordpress.org/reference/functions/add_query_arg/

+0

感謝@Rahi,可以請你舉個例子/解釋如何使用它? – Fadi

+0

假設你想添加2個額外的參數單個博客網頁網址(點擊閱讀更多按鈕),如http:// localhost/clinica/2017/02/24/hello-world /?p1 = test&p2 = test。代碼示例:\t \t \t \t <?PHP的 \t \t \t \t $燙髮=陣列( \t \t \t \t \t \t 'P1'=> '測試', \t \t \t \t \t \t 'P2'=>' test' \t \t \t \t); \t \t \t \t?> \t \t \t \t \t \t \t \t 見下文 截圖http://prntscr.com/elii1l http://prntscr.com/eliils – Rahi