roots 3.0.0

This commit is contained in:
Ben Word
2011-03-27 13:46:21 -06:00
commit 8e177235ff
89 changed files with 7989 additions and 0 deletions

10
loop-page.php Normal file
View File

@@ -0,0 +1,10 @@
<?php /* Start loop */ ?>
<?php while (have_posts()) : the_post(); ?>
<?php if (function_exists('yoast_breadcrumb')) { if (is_page() && $post->post_parent) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } } ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'roots'), 'after' => '</p></nav>' )); ?>
<?php endwhile; // End the loop ?>