php 在WooCommerce中更改“选择一个选项”。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在WooCommerce中更改“选择一个选项”。相关的知识,希望对你有一定的参考价值。

<?php 

//Customise the dropdown 'choose an option'
add_filter('woocommerce_dropdown_variation_attribute_options_args', 'wcvdc_dropdown_choice', 10);


// Displays the custom "Choose an option" on the front end
function custom_dropdown_choice( $args ){
  global $product;

  $args['show_option_none'] = "Select a: " . strtolower(wc_attribute_label($args['attribute'],$product));

  return $args;
}

以上是关于php 在WooCommerce中更改“选择一个选项”。的主要内容,如果未能解决你的问题,请参考以下文章