| [ Index ] |
PHP Cross Reference of Wordpress 2.9.1 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @package WordPress 4 * @subpackage Default_Theme 5 */ 6 7 get_header(); ?> 8 9 <div id="content" class="narrowcolumn" role="main"> 10 11 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 12 <div class="post" id="post-<?php the_ID(); ?>"> 13 <h2><?php the_title(); ?></h2> 14 <div class="entry"> 15 <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> 16 17 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> 18 19 </div> 20 </div> 21 <?php endwhile; endif; ?> 22 <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> 23 24 <?php comments_template(); ?> 25 26 </div> 27 28 <?php get_sidebar(); ?> 29 30 <?php get_footer(); ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Fri Jan 8 00:19:48 2010 | Cross-referenced by PHPXref 0.7 |