最新发布

^

2019-03-17

WordPress教程:WooCommerce设定最低订单量

设定最低订单量,显示一个通知提示客户。 /** * Set a minimum order amount for checkout */ add_action( 'woocommerce_checko […]

^

2019-03-17

WordPress教程:WooCommerce有促销商品

有促销商品 function woo_have_onsale_products() { global $woocommerce; https:// Get products on sale $prod […]

^

2019-03-17

WordPress教程:WooCommerce显示销售产品目录简码

显示销售产品目录简码 function woocommerce_sale_products( $atts ) { global $woocommerce_loop; extract(shortcode […]

^

2019-03-17

WordPress教程:WooCommerce在编辑地址页面添加自定义字段

在编辑地址页面添加自定义字段 https:// add fields to edit address page function woo_add_edit_address_fields( $field […]

^

2019-03-17

WordPress教程:WooCommerce返回特色产品ID

返回特色产品ID function woo_get_featured_product_ids() { https:// Load from cache $featured_product_ids = […]

^

2019-03-17

WordPress教程:WooCommerce电子邮件名称解码

从WooCommerce电子邮件名称解码 function woo_custom_wp_mail_from_name() { global $woocommerce; return html_enti […]