index.php

来自「php 开发的内容管理系统」· PHP 代码 · 共 33 行

PHP
33
字号
<?php get_header();?>	
	<div id="main">
		<div id="content">
			<?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'); ?>&nbsp;</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('<br/>Continue Reading &#187;'); ?>
		<p class="post-info-co">				
			<span class="feedback"><?php comments_popup_link('No Responses &#187;','One Response &#187;','% Responses &#187;'); ?></span>								
		</p>
		<!--	
			<?php trackback_rdf(); ?>
		-->
		<div class="post-footer">&nbsp;</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 + -
显示快捷键?