我遇到问题,我需要更改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',
)
)
),
但是当我预览主题选项时,默认列表项“标题”仍然存在,我只想查看学术成功文本区域。我该怎么办?
答案 0 :(得分:1)
我也遇到了同样的情况。
在那之后,我使用旧版本的“list-item”和“gallery”。
这运作良好。 Ex: v2.4.6
答案 1 :(得分:0)
是否包含主题选项页面?
你需要在你的functions.php中引用它,这有效:
require_once locate_template('/path-to-your/theme-options.php' );