芝麻web文件管理V1.00
编辑当前文件:/home/projzpbv/public_html/wp-content/plugins/ninja-forms/includes/Fields/Total.php
_nicename = esc_html__( 'Total', 'ninja-forms' ); } public function process( $total, $data ) { $subtotal = 0; foreach( $data[ 'fields' ] as $key => $field ){ if( isset ( $field[ 'type' ] ) && 'shipping' == $field[ 'type' ] ){ $subtotal += (float)$field[ 'shipping_cost' ]; } } if( isset( $data[ 'product_totals' ] ) ){ foreach( $data[ 'product_totals' ] as $product_total ){ $subtotal += (float)$product_total; } } $data[ 'new_total' ] = number_format( $subtotal, 2 ); return $data; } }