14 Star 158 Fork 39

Licoy / wordpress-theme-puock

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
header.php 5.04 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv='content-language' content='<?php echo get_locale() ?>'>
<link rel="shortcut icon" href="<?php echo pk_get_option('favicon') ?>">
<link rel="apple-touch-icon" href="<?php echo pk_get_option('favicon') ?>"/>
<?php if(pk_is_checked('seo_open',true)) get_template_part('inc/seo') ?>
<?php wp_head(); ?>
<?php get_template_part('templates/css', 'grey') ?>
<?php get_template_part('templates/css', 'custom') ?>
<?php echo pk_head_style_var() ?>
<?php if (!empty(pk_get_option('tj_code_header', ''))): ?>
<?php echo pk_get_option('tj_code_header', ''); ?>
<?php endif; ?>
<?php if (!empty(pk_get_option('css_code_header', ''))): ?>
<?php echo "<style>" . pk_get_option('css_code_header', '') . "</style>"; ?>
<?php endif; ?>
</head>
<body class="puock-<?php echo pk_theme_light() ? 'light' : 'dark';
echo current_theme_supports('custom-background') ? ' custom-background' : ''; ?>">
<div>
<?php if (is_single()): ?>
<div class="progress" id="page-read-progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" aria-valuenow="0" aria-valuemin="0"
aria-valuemax="100" role="progressbar"></div>
</div>
<?php endif; ?>
<div id="header-box" class="<?php pk_open_box_animated('animated fadeInDown') ?>"></div>
<header id="header"
class="<?php pk_open_box_animated('animated fadeInDown') ?> <?php if (pk_is_checked('nav_blur')) {
echo 'blur';
} ?>">
<div class="navbar navbar-dark shadow-sm">
<div class="container">
<a href="<?php echo home_url() ?>" id="logo" class="navbar-brand <?php if(pk_is_checked('logo_loop_light')) echo 'logo-loop-light'; ?>">
<?php if (pk_is_checked('on_txt_logo') || empty(pk_get_option('light_logo')) || empty(pk_get_option('dark_logo'))): ?>
<span class="puock-text txt-logo"><?php echo pk_get_web_title() ?></span>
<?php else: ?>
<img id="logo-light" alt="logo" class="w-100 <?php echo pk_theme_light() ? '' : 'd-none' ?>"
src="<?php echo pk_get_option('light_logo') ?>">
<img id="logo-dark" alt="logo" class="w-100 <?php echo pk_theme_light() ? 'd-none' : '' ?>"
src="<?php echo pk_get_option('dark_logo') ?>">
<?php endif; ?>
</a>
<div class="d-none d-lg-block puock-links">
<div id="menus" class="t-md ">
<?php echo pk_get_main_menu() ?>
</div>
</div>
<div class="mobile-menus d-block d-lg-none p-1 puock-text">
<i class="fa fa-bars t-xl mr-2 mobile-menu-s"></i>
<?php if (pk_is_checked('theme_mode_s')): ?>
<i class="fa-regular fa-<?php echo(pk_theme_light() ? 'sun' : 'moon'); ?> colorMode t-xl mr-2"></i>
<?php endif; ?>
<i class="search-modal-btn fa fa-search t-md"></i>
</div>
</div>
</div>
</header>
<div id="search" class="d-none">
<div class="w-100 d-flex justify-content-center">
<div id="search-main" class="container p-block">
<form class="global-search-form" action="<?php echo home_url() ?>">
<div class="search-layout">
<div class="search-input">
<input required type="text" name="s" class="form-control"
placeholder="<?php _e('请输入搜索关键字', PUOCK) ?>">
</div>
<div class="search-start">
<button type="submit" class="btn-dark btn"><i
class="fa fa-search mr-1"></i><?php _e('搜索', PUOCK) ?></button>
</div>
<div class="search-close-btn">
<button type="button" class="btn-danger btn ml-1 search-modal-btn"><i
class="fa fa-close"></i></button>
</div>
</div>
</form>
</div>
</div>
</div>
<div id="mobile-menu" class="d-none">
<div class="menus">
<div class="p-block">
<div class="text-end"><i class="fa fa-close t-xl puock-link mobile-menu-close ta3"></i></div>
<nav>
<?php echo pk_get_main_menu(true) ?>
</nav>
</div>
</div>
</div>
<div id="mobile-menu-backdrop" class="modal-backdrop d-none"></div>
<div id="search-backdrop" class="modal-backdrop d-none"></div>
PHP
1
https://gitee.com/licoy/wordpress-theme-puock.git
git@gitee.com:licoy/wordpress-theme-puock.git
licoy
wordpress-theme-puock
wordpress-theme-puock
master

搜索帮助

14c37bed 8189591 565d56ea 8189591