single-news.php
722 字节
<?php get_header();?>
<section class="layout">
<nav class="path-bar">
<ul class="path-nav">
<li><a href="<?php echo home_url("/"); ?>">Home</a></li></li>
<li><a href="<?php echo home_url("/"); ?>news">News</a></li>
</ul>
</nav>
<?php get_sidebar();?>
<section class="main">
<div class="main-tit-bar">
<h1 class="title"><?php wp_title(); ?> </h1>
</div>
<article class="entry blog-article">
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<div class="clear"></div>
<hr>Post time: <?php the_time('M-d-Y') ?>
</article>
</section>
</section>
<?php get_footer();?>