Redux Media Field未显示默认图像预览

时间:2016-01-25 05:13:24

标签: wordpress redux-framework

我正在使用Redux框架在我的Wordpress主题中添加主题选项。现在我的问题是,媒体字段没有显示默认图像预览。我的代码就像风箱一样 -

Redux::setSection( $opt_name, array(
    'icon' => 'el el-smiley',
    'title' => 'Header Optipns',
    'fields' => array(
        array(
            'title' => __('Logo Uploader','zText'),
            'subtitle' => __('Upload your Logo', 'zText'),
            'desc' => __('Upload any image or logo whatever you like','zText'),
            'type' => 'media',
            'id' => 'logo-uplodaer',
            'default'  => array(
                'url'=> get_template_directory_uri().'/images/logo.png'
            ),
        ),
        array(
        'title' => 'Gender',
        'type' => 'radio',
        'id' => 'gender',
        'options' => array(
            '1' => 'Male',
            '2' => 'Female',
            '3' => 'Hurmoprodite'
        ),
        'default' => '2'

        ),
        array(
        'title' => 'Color',
        'type' => 'color',
        'id' => 'color',
        'drfault' => '#ffffff',
        'validate' => 'color'
        )
    )
)
);

3 个答案:

答案 0 :(得分:0)

也许解决方案很简单?

默认值:' default_show' => '真正的' 这是启用或禁用字段标题是否显示字段默认值的变量。 在这里找到 - > https://docs.reduxframework.com/core/arguments/#default_show

OR

' save_defaults' =>真正, //在加载时,在用户单击“保存”之前将默认值保存到DB

在此处找到 - > sample-config.php第120行 - >将false设置为true。

一切顺利

答案 1 :(得分:0)

  

您只需点击重置部分按钮

enter image description here

此选项对我有用!

答案 2 :(得分:0)

您可以使用编辑器,也可以通过它添加图像。 这是代码片段; 管理面板:

    $fields = array(
    'id'               => 'editor-text',
    'type'             => 'editor',
    'title'            => __('Editor Text', 'redux-framework-demo'), 
    'subtitle'         => __('Subtitle text would go here.', 'redux-framework-demo'),
    'default'          => 'Powered by Redux.',
    'args'   => array(
        'teeny'            => true,
        'textarea_rows'    => 10
    )
);

前端:

global $redux_demo;

echo 'Editor text: ' . $redux_demo['editor-text'];

请尝试一下