如何在wordpress中创建Redux Framework中的Repeater字段?

时间:2016-07-31 06:56:57

标签: php wordpress plugins redux-framework

Repeater字段插件是在Redux框架中购买的。但我正在创建它作为自定义文件。

我创建了3个字段(标题,电话,Textarea),添加更多和删除按钮。在这里,我想添加上传按钮以及这三个字段。但我没有添加上传按钮。我尝试了很多,但它没有用。

您能告诉我在自定义字段扩展中添加上传图片按钮的方法是什么。

1 个答案:

答案 0 :(得分:3)

$fields = array(
    'id'=>'multi-text',
    'type' => 'multi_text',
    'title' => __('Multi Text Option - Color Validated', 'textdomain'),
    'validate' => 'color',
    'subtitle' => __('If you enter an invalid color it will be removed. Try using the text "blue" as a color.  ;)', 'texdoma'),
    'desc' => __('This is the description field, again good for additional info.', 'redux-framework-demo')
    ),
);

使用示例

此示例基于上面提供的示例用法。请务必将$ redux_demo更改为您在opt_name参数中指定的值。

global $redux_demo;

echo 'First Text Entry: ' . $redux_demo['multi-text'][0];

//其他条目的数组数量将增加一个。