1 Star 0 Fork 2

owoi/eyas_ghost

forked from Song/eyas_ghost 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
functions.php 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
Song 提交于 2014-12-07 20:15 . the theme is ok
<?php
if ( ! function_exists( 'ey_setup' ) ) :
// 主题初始化
function ey_setup(){
/*
* 添加主题多语言功能
*/
load_theme_textdomain( 'ey', get_template_directory() . '/lang' );
/*
* head feed链接
*/
//add_theme_support( 'automatic-feed-links' );
/*
* 支持特色图像
*/
add_theme_support( 'post-thumbnails' );
/*
* 注册多条菜单
*/
register_nav_menus( array(
'main_menu' => __( 'main menu', 'ey' ),
'right_menu' => __( 'right menu', 'ey' ),
'footer_menu' => __('footer menu','ey')
) );
/*
* 注册小工具位置
*/
// register_sidebar( array(
// 'name' => __( 'Home Sidebar', 'ey' ),
// 'id' => 'home_sidebar',
// 'description' => __('display sidebar in home page','ey'),
// 'class' => '',
// 'before_widget' => '<div class="panel panel-default sidebar">',
// 'after_widget' => '</div>',
// 'before_title' => '<div class="panel-heading"><strong>',
// 'after_title' => '</strong></div>'
// ) );
/*
* 注册一条菜单
*/
// register_nav_menu( 'test_menu', __('test menu','ey') );
/*
* 启用html5
*/
// add_theme_support( 'html5', array(
// 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption',
// ) );
/*
* 启用文章格式
*/
// add_theme_support( 'post-formats', array(
// 'aside', 'image', 'video', 'quote', 'link',
// ) );
// Setup the WordPress core custom background feature.
// add_theme_support( 'custom-background', apply_filters( '_s_custom_background_args', array(
// 'default-color' => 'ffffff',
// 'default-image' => '',
// ) ) );
}
add_action( 'after_setup_theme', 'ey_setup' );
endif;
/*
*集成插件
*/
require get_template_directory() . '/inc/plugin_init.php';
/*
*定义函数
*/
require get_template_directory() . '/inc/function.php';
/*
*自定义内容类型
*/
// require get_template_directory() . '/inc/post_type.php';
/*
*自定义小工具
*/
// require get_template_directory() . '/inc/widgets.php';
/*
*主题选项
*/
// require get_template_directory() . '/inc/options.php';
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/samegis/eyas_ghost.git
git@gitee.com:samegis/eyas_ghost.git
samegis
eyas_ghost
eyas_ghost
master

搜索帮助