我如何将属性添加到行并将设置获取到前端 WP Bakery?
我设置了一个值,保存它,保存页面,查看它,但对前端没有影响。一行仍然没有属性。
// Add Params
$vc_column_text_new_params = array(
// Example
array(
'type' => 'textfield',
'holder' => 'h3',
'class' => 'class-name',
'heading' => __( 'Animations', 'text-domain' ),
'param_name' => 'example',
'value' => __( 'Default value', 'text-domain' ),
'description' => __( 'AOS, animate on scroll, css3 scroll animations, simple scroll animations', 'text-domain' ),
'admin_label' => true,
'dependency' => '',
'weight' => 0,
'group' => 'Animate On Scroll',
),
);
vc_add_params( 'vc_row', $vc_column_text_new_params );
}