📜  在 caldera 的表单选择字段上插入 V 形 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:28.646000             🧑  作者: Mango

代码示例1
add_filter( 'caldera_forms_field_option_presets', function( $presets ){

    $presets[ 'names-list' ] = array(
        'name' => 'Names of People',
        'data' => file_get_contents( 'path/to/file.txt' ),
    );

    return $presets;

});