1 Star 0 Fork 40

Alnonfy/wordpress-theme-puock

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
404.php 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
<?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="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() ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/alnonfy0131/wordpress-theme-puock.git
[email protected]:alnonfy0131/wordpress-theme-puock.git
alnonfy0131
wordpress-theme-puock
wordpress-theme-puock
master

搜索帮助