2015-04-18 160 views
0

我要添加自定義URL中包含belwo虛擬內容:WordPress的自定義網址

www.mysite/myparam/paramvalue

我想顯示在頁面加載paramvalue只是

如何我可以這樣做嗎?

我試着使用:

add_action('parse_request', 'my_custom_url_handler'); 

function my_custom_url_handler() { 
    if(**mycondition**){ 
     echo "<h1>TEST</h1>"; 
     exit(); 
    } 
} 

我怎麼查我的病情,請指導

+0

這是否描述你的問題? http://stackoverflow.com/questions/29051592/add-custom-url-segment-to-wordpress-page – enigma

回答

0

默認情況下WordPress網頁不列入允許創建多層次的聯繫。但您可以使用此插件爲任何頁面或帖子創建自定義鏈接,Enhanced Custom Permalinks

然後,您可以創建一個頁面模板或使用像Allow PHP in Posts and Pages這樣的插件來顯示帶有$ _REQUEST超級全局的url部分。