代码拉取完成,页面将自动刷新
同步操作将从 Song/eyas_ghost 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?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';
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。