我对解释我从woocommerce获得的一段代码有疑问。代码工作正常,但我有一个问题,理解它的一部分。
以下是代码:
* Adding the Custom field to the checkout
**/
add_action('woocommerce_after_order_notes', 'my_custom_checkout_field');
function my_custom_checkout_field( $checkout ) {
global $woocommerce;
$found = false;
//check if product already in cart
if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) {
foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
$_product = $values['data'];
if ( $_product->id == 209) {
echo '<div id="my_custom_checkout_field"><h3>'.__('My Field').'</h3>';
woocommerce_form_field( 'my_field_name', array(
'type' => 'checkbox',
'class' => array('my-field-class form-row-wide'),
'label' => __('Fill in this field'),
'placeholder' => __('Enter a number'),
), $checkout->get_value( 'my_field_name' ));
echo '</div>';
echo '<div id="my_custom_checkout_field2"><h3>'.__('Keywords').'</h3>';
woocommerce_form_field( 'enter_keywords', array(
'type' => 'text',
'required' => true,
'class' => array('my-field-class form-row-wide'),
'label' => __('Enter Keywords'),
'placeholder' => __('Enter something'),
), $checkout->get_value( 'keywords' ));
echo '</div>';
}
}
}
}
/**
* Update the order meta with field value
**/
add_action('woocommerce_checkout_update_order_meta', 'my_custom_checkout_field_update_order_meta');
function my_custom_checkout_field_update_order_meta( $order_id ) {
if ($_POST['my_field_name']) update_post_meta( $order_id, 'My Field', esc_attr($_POST['my_field_name']));
if ($_POST['keywords']) update_post_meta( $order_id, 'Keywords', esc_attr($_POST['keywords']));
}
/**
* Add the field to order emails
**/
add_filter('woocommerce_email_order_meta_keys', 'my_custom_checkout_field_order_meta_keys');
function my_custom_checkout_field_order_meta_keys( $keys ) {
$keys[] = 'My Field';
$keys[] = 'Keywords';
return $keys;
}
/**
* Process the checkout
**/
add_action('woocommerce_checkout_process', 'my_custom_checkout_field_process');
function my_custom_checkout_field_process() {
global $woocommerce;
// Check if set, if its not set add an error.
if (!$_POST['enter_keywords'])
$woocommerce->add_error( __('Please enter keywords...') );
}
以上代码与发送电子邮件有关。
我怀疑是:
Why should I give values for $keys[] as:
$keys[] = 'My Field';
$keys[] = 'Keywords';
为什么我不能将my_field_name,关键字作为$keys[]
的值?
最重要的是,这3个函数对彼此有一些了解,如果我为$ keys []提供“我的字段”和“关键字”,那么只有我收到电子邮件,否则不是,所以为什么不能给$的其他值键[]?
答案 0 :(得分:1)
$key
只是一个变量。在上面的代码中,它只是将值作为数组形式存储在$key
中以作为结果返回。当您尝试打印$key
变量时,它应如下所示:
Array(
[0] => My Field
[1] => Keywords
)
或强>
为什么您无法更改$key[]='My Field'
和$key='Keywords'
的值,因为它们是方法(functions
},它定义了文件中的某些位置。如果您更改它们,然后这些功能将无法执行,这就是您无法发送电子邮件的原因。尝试在您的文件中找到这些功能,那么您将有疑问。