加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
header.php 1.92 KB
一键复制 编辑 原始数据 按行查看 历史
friend-nicen 提交于 2023-01-07 16:00 . 2023-01-07更新
<?php
/*
* 全局顶部模板
* @author 友人a丶
* @date 2022-07-08
* */
?>
<!DOCTYPE html>
<html lang="zh-cn" xmlns="http://www.w3.org/1999/html" class="personal">
<head>
<meta name="theme-color" content="#ffffff"/>
<meta charset="<?php bloginfo( 'charset' ); ?>"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<?php
/*是否显示主题自带的tdk* */
if ( nicen_theme_config( 'document_tdk', false ) ) {
?>
<title><?php nicen_theme_title() ?></title>
<meta name="keywords" content="<?php nicen_theme_config( 'document_keywords' ); ?>"/>
<meta name="description" content="<?php nicen_theme_description() ?>"/>
<?php
}
if ( nicen_theme_config( 'document_seo_og', false ) ) {
echo nicen_theme_og(); //输出og协议内容
}
?>
<?php /*wp_site_icon(); */ ?>
<?php wp_head(); ?>
</head>
<body>
<!--顶部导航栏-->
<header class="main-header">
<!-- 顶部左侧标题 和 logo -->
<div class="left">
<a href="<?php echo home_url(); ?>" class="logo" title="返回首页">
<?php
/* 如果需要显示logo */
if ( nicen_theme_config( 'document_header_show_logo', false ) ) {
echo '<img src="' . nicen_theme_config( 'document_logo_url', false ) . '" title="logo"/>';
}
/* 如果需要显示标题*/
if ( nicen_theme_config( 'document_header_show_title', false ) ) {
echo '<h2 class="title tooltip"
data-hint="' . get_bloginfo( 'name' ) . '">' . get_bloginfo( 'name' ) . '</h2>';
}
?>
</a>
</div>
<!--移动端展开导航栏-->
<div class="daohang iconfont icon-daohangmoren"></div>
<!-- 右边导航栏 -->
<div class="right">
<!--菜单栏-->
<?php get_template_part( 'template/index/search' ); ?>
<?php get_template_part( 'template/index/nav_menu' ); ?>
</div>
</header>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化