WordPress參數傳遞及路由規則

來源:互聯網
上載者:User
1.WordPress參數怎麼傳遞,不使用?xx=xx的方式。

function add_query_vars($aVars) {$aVars[] = "msds_pif_cat"; // represents the name of the product category as shown in the URLreturn $aVars;} // hook add_query_vars function into query_varsadd_filter('query_vars', 'add_query_vars');function add_rewrite_rules($aRules) {$aNewRules = array('msds-pif/([^/]+)/?$' => 'index.php?pagename=msds-pif&msds_pif_cat=$matches[1]');$aRules = $aNewRules + $aRules;return $aRules;} // hook add_rewrite_rules function into rewrite_rules_arrayadd_filter('rewrite_rules_array', 'add_rewrite_rules');

查到相關函數但是沒有搞懂,大家可不可以幫幫我。

原文

還有就是WordPress的鉤子機制是怎麼一回事。

回複內容:

1.WordPress參數怎麼傳遞,不使用?xx=xx的方式。

function add_query_vars($aVars) {$aVars[] = "msds_pif_cat"; // represents the name of the product category as shown in the URLreturn $aVars;} // hook add_query_vars function into query_varsadd_filter('query_vars', 'add_query_vars');function add_rewrite_rules($aRules) {$aNewRules = array('msds-pif/([^/]+)/?$' => 'index.php?pagename=msds-pif&msds_pif_cat=$matches[1]');$aRules = $aNewRules + $aRules;return $aRules;} // hook add_rewrite_rules function into rewrite_rules_arrayadd_filter('rewrite_rules_array', 'add_rewrite_rules');

查到相關函數但是沒有搞懂,大家可不可以幫幫我。

原文

還有就是WordPress的鉤子機制是怎麼一回事。

路由規則比如:

add_rewrite_rule( 'haha/([A-Za-z0-9]{1,})/?$','index.php?page_id=8&myname=$matches[1]', 'top' );

這樣url www.xx.com/haha/tuntun ,實際上就會訪問 /index.php?page_id=8&myname=tuntun

但是這樣的通過$_GET['myname']是得不到你想要的值的,如果想通過$_GET['myname']得到值,需要:

//add query_argsfunction add_query_vars($aVars) {    $aVars[] = 'myname';    return $aVars;}add_filter('query_vars', 'add_query_vars');

這就是你說的參數傳遞。但有的參數是系統預設內建的,不需要額外添加。

關於鉤子機制,一句話說不清楚,網上很多教程。

參考:
http://www.tantengvip.com/2013/11/wordpress-route/
http://www.tantengvip.com/2015/01/add_rewrite_tag_rule/

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.