为"列表项"创建自定义选项; wordpress的Option Tree插件中的选项

时间:2014-05-15 05:00:30

标签: wordpress wordpress-plugin options

我遇到问题,我需要更改Option树中“List-item”选项的默认选项。现在默认是“标题/图像/链接/描述”..我想删除它们并添加我自己的。我写了这段代码:

      array(
    'id'          => 'academic_success_content',
    'label'       => 'Academic Success Content',
    'desc'        => 'Enter the academic success content. It will appear in the home page in list items format',
    'std'         => '',
    'type'        => 'list-item',
    'section'     => 'academic_perfomance',
     'settings'    => array( 
      array(
        'id'          => 'academic_success',
        'label'       => 'Academic Success',
        'type'        => 'textarea-simple',
      )
    )
  ),

但是当我预览主题选项时,默认列表项“标题”仍然存在,我只想查看学术成功文本区域。我该怎么办?

2 个答案:

答案 0 :(得分:1)

我也遇到了同样的情况。

在那之后,我使用旧版本的“list-item”和“gallery”。

运作良好。 Ex: v2.4.6

答案 1 :(得分:0)

是否包含主题选项页面?

你需要在你的functions.php中引用它,这有效:

require_once locate_template('/path-to-your/theme-options.php' );