在WooCommerce开发的过程中,我们经常会用到一些函数实现相应的功能,今天为大家介绍的是 WooCommerce开发过程中经常用到的核心函数,这些函数位于 includes/wc-core-functions.php 文件中,我们可以在主题或插件中使用这些函数。
wc_mail
通过这个函数使用WooCommerce邮件模板发送 HTML 邮件。
wc_mail( $to, $subject, $message, $headers = "Content-Type: text/htmlrn", $attachments = "" )
wc_get_page_id( $pagename )
通过页面名称获取WooCommerce页面 ID。
wc_get_page_id( $page )
wc_price( $price, $args )
格式化价格数字为正确的小数格式,并添加货币符号。
wc_price( $price, $args = array() )
$args 数组有一个可选项 ex_tax_label – 如果设置为 true,将会显示一个 ‘包含税费’ 的信息。
wc_clean( $var )
从字符串($var)中截取和清理标签。
wc_clean( $var )
wc_get_dimension( $dim, $to_unit )
以WooCommerce尺寸单位获取尺寸 (dim),并转换为需要的尺寸单位 ($to_unit)。
wc_get_dimension( 10, 'lbs' )
wc_get_weight( $weight, $to_unit )
以WooCommerce重量单位获取重量($weight),并转换为需要的重量单位 ($to_unit)。
wc_get_weight( 10, 'lbs' )
未完待续…