加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
page.php 773 Bytes
一键复制 编辑 原始数据 按行查看 历史
Seaton Jiang 提交于 2017-08-11 15:32 . Fix syntax error
<?php get_header();?>
<div id="main">
<?php $site_banner = sirius_option('background_image');?>
<?php if ( !empty( $site_banner ) ) {?>
<div id="banner" style="background-image: url(<?php echo sirius_option('background_image'); ?>);"></div>
<?php } ?>
<section>
<div class="container">
<?php if (have_posts()) : the_post(); update_post_caches($posts);
?>
<header class="post-header">
<h1 class="post-title text-center"><?php the_title(); ?></h1>
</header>
<div class="post-content"><?php the_content(); ?></div>
<?php endif; ?>
<?php comments_template(); ?>
</div>
</section>
</div>
<?php get_footer(); ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化