14 Star 160 Fork 40

Licoy / wordpress-theme-puock

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
404.php 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
Licoy 提交于 2023-01-27 17:06 . :sparkles:增加用户中心资料更新
<?php
get_header();
?>
<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 _e('你访问的资源不存在!', PUOCK) ?></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="fa fa-home"></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() ?>
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

搜索帮助