下载:https://github.com/Codestar/codestar-framework
放入到你要集成的主题下
这里我新建了inc并将其放入其中,这个无所谓了怎么方便怎么来。
打开核心函数文件:functions.php将其引入
/**
*
* Codestar Framework
* A Simple and Lightweight WordPress Option Framework for Themes and Plugins
*
*/
require_once get_theme_file_path() .'/inc/codestar-framework/codestar-framework.php';
在你放入的框架文件夹中找到codestar-framework.php
在最后一行加入官方自带的演示
require_once plugin_dir_path(__FILE__) .'samples/admin-options.php';
如果你不想直接用官方的,可以框架目前下随便建立个文件夹,在建立一个PHP文件,内容按照以下即可。
<?php
if (class_exists('CSF')) {
$prefix = 'my_framework';
CSF::createOptions($prefix, array(
'menu_title' => '主题设置',
'menu_slug' => 'theme-setting',
));
CSF::createSection($prefix, array(
'title' => '演示设置',
'fields' => array(
// 自定义字段
)
));
}