允许在Woocommerce

时间:2018-03-10 16:13:47

标签: php html wordpress woocommerce custom-fields

我有一个小问题,不知道如何解决自己。我有这个功能:

// Custom Field Product
function woo_add_custom_general_fields() {

 global $woocommerce, $post;

  echo '<div class="options_group">';

 // Textarea
woocommerce_wp_textarea_input( 
array( 
    'id'          => '_textarea', 
    'label'       => __( 'Text Before Add to Cart:', 'woocommerce' ), 
    'placeholder' => '', 
    'description' => __( 'Enter the before add to cart button text here.', 
'woocommerce' ) 
)
);
woocommerce_wp_textarea_input( 
array( 
    'id'          => '_textarea1', 
    'label'       => __( 'Text After Add to Cart:', 'woocommerce' ), 
    'placeholder' => '', 
    'description' => __( 'Enter the after add to cart button text here.', 
'woocommerce' ) 
)
);

 echo '</div>';

}
add_action( 'woocommerce_product_options_general_product_data', 
'woo_add_custom_general_fields' );

// Starting Save text
function woo_add_custom_general_fields_save( $post_id ){

// Textarea
$woocommerce_textarea = $_POST['_textarea'];
if( !empty( $woocommerce_textarea ) )
    update_post_meta( $post_id, '_textarea', esc_html( $woocommerce_textarea 
) );  

    // Textarea2
$woocommerce_textarea = $_POST['_textarea1'];
if( !empty( $woocommerce_textarea ) )
    update_post_meta( $post_id, '_textarea1', esc_html( 
 $woocommerce_textarea ) );
}

add_action( 'woocommerce_process_product_meta', 
'woo_add_custom_general_fields_save' );

// Print content to product

add_action( 'woocommerce_before_add_to_cart_form', 
'add_content_after_addtocart_button_func' );

function add_content_after_addtocart_button_func() {

// Echo content.

echo get_post_meta( get_the_ID(), '_textarea', true );

}
add_action( 'woocommerce_after_add_to_cart_form', 
'add_content_after_addtocart_button_func1' );

function add_content_after_addtocart_button_func1() {

// Echo content.

echo get_post_meta( get_the_ID(), '_textarea1', true );

 }

但是当插入这样的文字时:

<b>random text. bla bla</b> 

进入字段,并保存,所有文本都丢失了,产品中没有显示任何内容?所以我的问题是......如何在自定义字段中使用粗体,斜体,颜色等有效的HTML标签?使用HTML标记保存文本后为什么所有文本都丢失了?

编辑 :替换此功能时:

update_post_meta( $post_id, '_textarea1', esc_html($woocommerce_textarea ));

用这个:

update_post_meta( $post_id, '_textarea1', esc_textarea( $woocommerce_textarea ) );

打印:<b>blabla</b>

但仍然没有形成标签。

1 个答案:

答案 0 :(得分:2)

您应该使用dedicated wp_kses_post() function&#34;清理内容以获取发布内容的允许HTML标记&#34;

所以在相关的钩子函数代码中:

// Save custom fields
add_action( 'woocommerce_process_product_meta', 'woo_add_custom_general_fields_save' );
function woo_add_custom_general_fields_save( $post_id ){

// Textarea 1
if( ! empty( $_POST['_textarea'] ) )
    update_post_meta( $post_id, '_textarea', wp_kses_post( $_POST['_textarea'] ) );

// Textarea 2
if( ! empty( $_POST['_textarea1'] ) )
    update_post_meta( $post_id, '_textarea1', wp_kses_post( $_POST['_textarea1'] ) );
}

此代码位于您的活动子主题(或主题)的function.php文件中。经过测试并正常工作。