<?php get_header(); ?>
- <main class="blog-single">
+ <main class="blog-single">
<div class="row">
<div id="blog-posts-over" class="small-12 medium-9 columns">
<?php if(have_posts()) : while(have_posts()): the_post();?>
<?php
get_template_part('parts/bread-crumbs');
?>
- </div>
+ </div>
<div class="row blog-post-container">
<div class="small-12 small-centered columns">
<div class="row">
}
?>
</ul>
- <p>Recipe Archive</p>
- <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
<p>Recipe Categories</p>
<ul>
<?php
'order' => 'ASC'
);
$categories = get_categories($args);
- foreach($categories as $category) {
- echo '<li><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </li> '; }
+ foreach($categories as $category) {
+ echo '<li><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </li> '; }
?>
</ul>
</div>