1 Star 1 Fork 41

owoi/wordpress-theme-puock

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
error.php 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
Licoy 提交于 2021-12-25 18:50 . :sparkles:优化及更新 #81 #51
<?php
include '../../../wp-blog-header.php';
get_header();
$error_info = $_SESSION['error_info'];
unset($_SESSION['error_info']);
if (empty($error_info)) {
$error_info = __('无错误信息', PUOCK);
}
?>
<div id="content" class="mt20 container min-height-container">
<?php echo pk_breadcrumbs() ?>
<div class="text-center p-block puock-text">
<h3 class="mt20"><?php echo $error_info ?></h3>
<h5 class="mt20"><span id="time-count-down">3</span><?php _e('秒后即将跳转至首页', PUOCK) ?></h5>
<div class="text-center mt20">
<a class="a-link" href="<?php echo home_url() ?>"><i class="czs-home-l"></i>&nbsp;<?php _e('返回首页', PUOCK) ?>
</a>
</div>
</div>
<script>
var timeCountDownS = 3;
var timeCountDownVal = 3;
timeCountDownVal = setInterval(function () {
$("#time-count-down").text(--timeCountDownS);
}, 1000);
setTimeout(function () {
window.clearInterval(timeCountDownVal);
window.location = '/';
}, 3000);
</script>
</div>
<?php get_footer() ?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/samegis/wordpress-theme-puock.git
git@gitee.com:samegis/wordpress-theme-puock.git
samegis
wordpress-theme-puock
wordpress-theme-puock
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385