text WooCommerce:如何获取WooCommerce页面ID

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text WooCommerce:如何获取WooCommerce页面ID相关的知识,希望对你有一定的参考价值。

// Get The Page ID You Need
get_option( 'woocommerce_shop_page_id' ); 
get_option( 'woocommerce_cart_page_id' ); 
get_option( 'woocommerce_checkout_page_id' );
get_option( 'woocommerce_pay_page_id' ); 
get_option( 'woocommerce_thanks_page_id' ); 
get_option( 'woocommerce_myaccount_page_id' ); 
get_option( 'woocommerce_edit_address_page_id' ); 
get_option( 'woocommerce_view_order_page_id' ); 
get_option( 'woocommerce_terms_page_id' ); 

// An Example
function get_shop_featured_image() {
  if( is_shop() ) {
    $shop = get_option( 'woocommerce_shop_page_id' );
    if( has_post_thumbnail( $shop ) ) {
      echo get_the_post_thumbnail( $shop );
    }
  }
}

// In You Templage File Place The Following
// Line To Call The WooCommerce Shop Featured Image
// Now You're Cooking With Gas - BOOM!!

<?php get_shop_featured_image(); ?>

以上是关于text WooCommerce:如何获取WooCommerce页面ID的主要内容,如果未能解决你的问题,请参考以下文章

Woocommerce 客户在 Paypal 重定向之前退出

Woocommerce 重新排序单页钩子,描述显示两次

如果 WooCommerce 结帐中存在某些产品类别,请删除其他产品

在 WooCommerce 订单页面上列出单独购买的产品的类别和子类别

使用 AJAX 向购物车添加变体 - WooCommerce API?

预定的销售已结束,但在查看产品时,可变产品似乎仍在销售 - Woocommerce