我在此功能中遇到此错误消息,但看不到任何字符问题。
语法错误,意外的“ 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' );