我使用Slightly Modified Options Framework 1.5.1在我的主题中添加主题选项页面。
$of_options[] = array( "name" => "Input Text",
"desc" => "A text input field.",
"id" => "counter",
"std" => "Default Value",
"type" => "text"
);
当我尝试添加字段时,它仅显示标签。提交和描述不存在。布局也会发生一些事情。但是当我将版本更改为旧版本时,一切正常。
答案 0 :(得分:0)
$options[] = array(
'name' => __('your name', 'options_framework_theme'),
'desc' => __('your description', 'options_framework_theme'),
'id' => 'counter',
'std' => 'Default Value',
'type' => 'text'
);