Woocommerce挂钩上的语法错误'(T_ENCAPSED_AND_WHITESPACE)

时间:2020-03-09 08:23:51

标签: woocommerce

我在此功能中遇到此错误消息,但看不到任何字符问题。

语法错误,意外的“ cfwc_save_cus”(T_ENCAPSED_AND_WHITESPACE)

function cfwc_save_custom_field( $post_id ) {
 $product = wc_get_product( $post_id );
 $title = isset( $_POST['custom_description'] ) ? $_POST['custom_description'] : '';
 $product->update_meta_data( 'custom_description', sanitize_text_field( $title ) );
 $product->save();
}
add_action( 'woocommerce_process_product_meta', 'cfwc_save_custom_field' );

0 个答案:

没有答案