php WooCommerce:如何获取WooCommerce页面ID

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 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(); ?>

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

php WooCommerce:如何获取WooCommerce页面ID

作为单选按钮的WooCommerce变奏曲

如何获取 woocommerce 订单的订单 ID 以在 functions.php 中的函数中使用?

WooCommerce 按用户角色删除购物车

如何从 WooCommerce 产品属性分类中获取术语?

WooCommerce 根据送货国家/地区更改电子邮件收件人