1 Star 0 Fork 40

shawn/wordpress-theme-puock

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
error.php 743 Bytes
一键复制 编辑 原始数据 按行查看 历史
Licoy 提交于 2022-10-07 16:58 . :sparkles:替换主题图标引用为fontawesome
<?php
include '../../../wp-blog-header.php';
$error_info = "";
pk_session_call(function () use (&$error_info) {
$error_info = @$_SESSION['error_info'];
unset($_SESSION['error_info']);
});
if (empty($error_info)) {
$error_info = __('无错误信息', PUOCK);
}
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 echo $error_info ?></h3>
<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>
</div>
<?php get_footer() ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/wx_3d25ad0b9a/wordpress-theme-puock.git
git@gitee.com:wx_3d25ad0b9a/wordpress-theme-puock.git
wx_3d25ad0b9a
wordpress-theme-puock
wordpress-theme-puock
master

搜索帮助