其他分享
首页 > 其他分享> > 通过 name ,代码获取 wordpress 某个页面的 id 及 url

通过 name ,代码获取 wordpress 某个页面的 id 及 url

作者:互联网

 获得 WooCommerce Page ID

获得 page ID :

 
<?php
$myaccount_page_id     = wc_get_page_id( 'myaccount' );
$shop_page_id          = wc_get_page_id( 'shop' );
$cart_page_id          = wc_get_page_id( 'cart' );
$checkout_page_id      = wc_get_page_id( 'checkout' );
$terms_page_id         = wc_get_page_id( 'terms' );
?>

  

不存在则 return -1.

获得 WooCommerce Page URL

得到 page URL (permalink): 

 
<?php
$myaccount_url     = wc_get_page_permalink( 'myaccount' );
$shop_url          = wc_get_page_permalink( 'shop' );
$cart_url          = wc_get_page_permalink( 'cart' );
$checkout_url      = wc_get_page_permalink( 'checkout' );
$terms_url         = wc_get_page_permalink( 'terms' );
?>
 

不存在则 return the home URL.

----

以后多记录下来供使用。

使用场景: 

按不同用户登录状态,动态加 menu 

标签:WooCommerce,return,name,url,Page,URL,wordpress,ID,page
来源: https://www.cnblogs.com/iameric/p/12335642.html