您必须创建文件选项。php在主题的目录中。您可以在此处找到此类文件的示例:https://github.com/devinsays/options-framework-theme/blob/master/options.php
选项。php包含一个函数optionsframework_options
此函数返回选项数组。
选项示例:
$options[] = array(
\'name\' => "Archive Layout",
\'desc\' => "Choose a layout for your archive pages. If none is selected, the default layout you specified at the top of this page will be used.",
\'id\' => "default_archive_layout",
\'std\' => "right-sidebar",
\'type\' => "images",
\'options\' => array(
\'right-sidebar\' => $imagepath . \'2cl.png\',
\'full-width\' => $imagepath . \'1c.png\',
\'left-sidebar\' => $imagepath . \'2cr.png\',
\'three-column\' => $imagepath . \'3cm.png\',)
);
上述选项具有id
default_archive_layout
, 保存选项(到数据库)后,可以通过调用以下命令获取其值:
of_get_option(\'default_archive_layout\')
. 就像
get_option
function 可以使用设置默认值的第二个参数调用此函数。
现在,您可以使用上面的https://codex.wordpress.org/Function_Reference/wp_add_inline_style 改变你的风格。