Ashuwp_framework是由阿树工作室发布的一个wordpress后台框架。
*最新版本 6.6 *更新日期 2020.04.28 *系统要求 php5.3以上 *WordPress版本 4.5以上
使用本框架的要求:你需要具备基础的php语法知识,以及对wordpress主题有基本的了解。
- 给wordpress文章添加自定义字段
- 支持自定义文章类型
- 6.0以上版本支持快速编辑
- 给wordpress主题后台添加设置页面
- 支持多个顶级页面及子页面
- 支持设置选项的导入导出
- 给wordpress的分类添加自定义字段
- 支持tag等自定义分类法
- 将ashuwp_framework整个文件夹复制到主题中。
- 将add-functions.php文件的两句加载框架范例代码复制到主题的functions.php文件中。
- 根据实际需求编辑配置数据。
- 完成了,去后台看看。
Ashuwp_framework is a framework for wordpress theme, Help developers to add options page/post metabox/term metabox for wordpress theme quickly and easily.
- Upload the folder ashuwp_framework into your theme.
- Copy the code in add-functions.php into your functions.php.
- OK,the framework worked.
- Edit the ashuwp_framework/config-example.php.
- DOC: (http://www.ashuwp.com/framework/down)
- Email:[email protected]
$meta_conf = array(
'title' => 'Meta Title',
'id'=>'example_box',
'page'=>array('page','post'), //post type
'context'=>'normal',
'priority'=>'low'
);
$ashu_meta = array();
$ashu_meta[] = array(
'name' => 'Input Example',
'id' => 'text_example',
'desc' => 'A text input example, Default content:"Hello ashuwp."',
'std' => 'Hello ashuwp.',
'type' => 'text'
);
/**More config array **/
$new_box = new ashuwp_postmeta_feild($ashu_meta, $meta_conf);
$taxonomy_cof = array('category','post_tag'); // taxonomy
$ashu_feild = array();
$ashu_feild[] = array(
'name' => 'Text Example',
'id' => 'text_example',
'desc' => 'description or notice.Default content:Default content',
'std' => 'Default content',
'edit_only' => false,
"type" => "text"
);
/**More config array **/
$ashuwp_termmeta_feild = new ashuwp_termmeta_feild($ashu_feild, $taxonomy_cof);
$page_info = array(
'full_name' => 'General Options',
'optionname'=>'general', //
'child'=>false,
'filename' => 'generalpage'
);
$ashu_options = array();
$ashu_options[] = array(
'name' => 'Input Example',
'id' => 'input_example',
'desc' => 'description or notice',
'std' => 'Default content',
'type' => 'text'
);
/**More config array **/
$option_page = new ashuwp_options_feild($ashu_options, $page_info);
- 使用get_post_meta函数获取数据。
- 由于框架支持输入框组合使用,以及输入框动态增加,所以获取的数据有可能是二维数组或者三维数组。
- 请先确认获取的数据类型,可使用var_dump函数打印查看。
- 使用get_term_meta函数获取数据。
- 由于框架支持输入框组合使用,以及输入框动态增加,所以获取的数据有可能是二维数组或者三维数组。
- 请先确认获取的数据类型,可使用var_dump函数打印查看。
- 一个设置页面的所有数据以多维数组形式在数据库中只保存一条数据。
- 为了与其它可能的插件区分,设置数据在保存的时候加了前缀。
- 使用get_option函数可以获取数据。 范例:
//设置页面配置'optionname'=>'general'
$general_option = get_option( 'ashuwp_general' );
// $general_option是多维数组
// 若不确定结构,可使用var_dump打印数据结构
var_dump( $general_option );
- 如果您觉得Ashuwp Framework对您wordpress开发有帮助,你还可以扫码捐助支持我。