Php wordpress在管理中添加输入

Php wordpress在管理中添加输入,php,html,wordpress,input,Php,Html,Wordpress,Input,我用的是主题引擎。我在butterbean_metaboxes.php中添加了输入: $manager->register_control( 'price2', array( 'type' => 'text', 'section' => 'stm_price', 'preview' => 'price2', 'label' => esc_html__( 'Price 2', 'stm_v

我用的是主题引擎。我在butterbean_metaboxes.php中添加了输入:

$manager->register_control(
    'price2',
    array(
        'type' => 'text',
        'section' => 'stm_price',
        'preview' => 'price2',
        'label' => esc_html__( 'Price 2', 'stm_vehicles_listing' ),
        'attr' => array(
            'class' => 'widefat',
        )
    )
);
在butterbean_helpers.php中,我添加了以下内容:

 if(!empty($_POST['stm_car_sale_price2']) || !empty($_POST['stm_car_price2'])) {
    $price = (!empty($_POST['stm_car_sale_price2'])) ? $_POST['stm_car_sale_price2'] : $_POST['stm_car_price2'];
}

if($price2 != '') update_post_meta($post_id, 'stm_genuine_price2', $price2);
当我在“管理”面板中保存更改时,它们不会应用,也不会从输入中删除。如何使输入以$price2的形式显示在页面上