Select 输入自定义可视化编辑器项目
Select type in custom visual composer item
我正在尝试为我的主题制作自定义可视化作曲器项目。到现在为止我都做对了。但在这里,我想为我的项目做出 select 选择,以检查它是否是第一个值显示的东西,第二个值是否显示其他东西等等。但我不知道该怎么做 select。这是我在映射部分的 php 文件代码:
<?php
// Element Mapping
public function vc_showcase_mapping() {
// Stop all if VC is not enabled
if ( !defined( 'WPB_VC_VERSION' ) ) {
return;
}
// Map the block with vc_map()
vc_map(
array(
'name' => __('Showcase', 'filmview'),
'base' => 'vc_showcase',
'description' => __('Showcase', 'filmview'),
'category' => __('filmview', 'filmview'),
'icon' => get_template_directory_uri().'/vc-elements/img/vc-showcase.png',
'params' => array(
array(
'type' => 'input',
'holder' => '',
'class' => '',
'heading' => __( 'Showcase type', 'filmview' ),
'param_name' => 'showcase-type',
'value' => __( 'showcase-1', 'filmview' ),
'description' => __( 'select type', 'filmview' ),
'admin_label' => false,
'weight' => 0,
'group' => 'settings',
),
),
)
);
}
?>
我得到了答案,这里有:
我只需要将 'value' => __( 'showcase-1', 'filmview' ),
更改为 :
'value' => array(
array(
'value' => 'showcase-1',
'label' => __( 'showcase type 1', 'filmview' ),
),
array(
'value' => 'showcase-2',
'label' => __( 'showcase type 2', 'filmview' ),
),
)
我正在尝试为我的主题制作自定义可视化作曲器项目。到现在为止我都做对了。但在这里,我想为我的项目做出 select 选择,以检查它是否是第一个值显示的东西,第二个值是否显示其他东西等等。但我不知道该怎么做 select。这是我在映射部分的 php 文件代码:
<?php
// Element Mapping
public function vc_showcase_mapping() {
// Stop all if VC is not enabled
if ( !defined( 'WPB_VC_VERSION' ) ) {
return;
}
// Map the block with vc_map()
vc_map(
array(
'name' => __('Showcase', 'filmview'),
'base' => 'vc_showcase',
'description' => __('Showcase', 'filmview'),
'category' => __('filmview', 'filmview'),
'icon' => get_template_directory_uri().'/vc-elements/img/vc-showcase.png',
'params' => array(
array(
'type' => 'input',
'holder' => '',
'class' => '',
'heading' => __( 'Showcase type', 'filmview' ),
'param_name' => 'showcase-type',
'value' => __( 'showcase-1', 'filmview' ),
'description' => __( 'select type', 'filmview' ),
'admin_label' => false,
'weight' => 0,
'group' => 'settings',
),
),
)
);
}
?>
我得到了答案,这里有:
我只需要将 'value' => __( 'showcase-1', 'filmview' ),
更改为 :
'value' => array(
array(
'value' => 'showcase-1',
'label' => __( 'showcase type 1', 'filmview' ),
),
array(
'value' => 'showcase-2',
'label' => __( 'showcase type 2', 'filmview' ),
),
)