category.php
来自「php 开发的内容管理系统」· PHP 代码 · 共 37 行
PHP
37 行
<?php get_header();?>
<div id="main">
<div id="content">
<div class="post">
<h2 class="post-title"><em><?php echo single_cat_title(); ?></em> </h2>
<p class="post-info">Archived Posts from this Category</p>
</div>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div class="post">
<h2 class="post-title">
<em><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></em>
<?php the_time('l, M j Y'); ?> </h2>
<p class="post-info">
<span class="pcat"><?php the_category(' and ') ?></span>
<span class="pauthor"><?php the_author() ?></span>
<span class="ptime"><?php the_time();?></span><?php edit_post_link(); ?>
</p>
<div class="post-content">
<?php the_content(); ?>
<p class="post-info-co">
<span class="feedback"><?php comments_popup_link('No Responses »','One Response »','% Responses »'); ?></span>
</p>
<!--
<?php trackback_rdf(); ?>
-->
<div class="post-footer"> </div>
</div>
<?php comments_template(); ?>
</div>
<?php endforeach; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<p align="center"><?php posts_nav_link() ?></p>
</div></div>
<?php get_sidebar(); ?>
<?php get_footer();?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?