WooCommerce 产品自定义字段 (woocommerce)

WooCommerce Products Custom Fields (woocommerce)

我创建了一个 Textafield 字段类型,当我输入一些文本并点击“发布”时,它就会显示在我的前端。但是,当我删除文本以清理前端并再次单击“发布”时,它会停留在 Textarea 字段和前端。 有什么帮助吗?

Function.php

    function woo_add_custom_general_fields() {

  global $woocommerce, $post;

  woocommerce_wp_text_input( 
    array( 
        'id'          => '_text_field', 
        'label'       => __( 'titre produit', 'woocommerce' ), 
        'placeholder' => '',
        'desc_tip'    => 'true',
        'description' => __( 'Enter the custom value here.', 'woocommerce' ) 
    )
);


function woo_add_custom_general_fields_save( $post_id ){

    // textfield
    $woocommerce_text_field = $_POST['_text_field'];
    if( !empty( $woocommerce_text_field ) )
    update_post_meta( $post_id, '_text_field', esc_html( $woocommerce_text_field ) );

只需删除此条件即可。

if( !empty( $woocommerce_text_field ) )

当前您正在检查文本字段是否为空更新文本字段的内容。

当您删除上述条件时,无论您是否输入内容,它都会更新该字段。

是的,您可以删除条件

function woo_add_custom_general_fields_save( $post_id ){

// textfield
$woocommerce_text_field = $_POST['_text_field'];
if( !empty( $woocommerce_text_field ) )
 update_post_meta( $post_id, '_text_field', esc_html( $woocommerce_text_field ) );
else
   update_post_meta( $post_id, '_text_field', '' );
}

**or** you can check like this also before updating or displaying: 

if ( get_post_meta( $post->ID, '_text_field', true ) != '' ) {
 // your code
}