我的Wordpress网站有问题。有pricebox,以小数显示价格。
示例: 当我输入249英镑时,它显示为249.00英镑,我只想删除小数点。
这是PHP代码
$key_fields[] = array(
'id' => 'premium-period',
'type' => 'text',
'title' => __( 'Premium Period', 'pbs-client' ),
'subtitle' => __( 'Enter the price of premium membership', 'pbs-client'),
'desc' => __( 'Field has to be numeric and cannot be empty', 'pbs-client' ),
'default' => '249',
'section_id' => 'premium-setup',
'validate' => 'numeric',
);
答案 0 :(得分:0)
如果将值存储在数据库中后显示小数,则您的列类型可能是FLOAT,请将其更改为INT。
或在回显值的位置添加此内容,
round($ val,0);