blob: 97a9e00dbffdce3ae195a2cec46fb64c6c414111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- ../twentyeleven/single.php 2011-09-29 13:43:25.000000000 -0400
+++ single.php 2011-09-29 16:23:02.000000000 -0400
@@ -14,11 +14,12 @@
<?php while ( have_posts() ) : the_post(); ?>
+ <!-- Remove the "Previous" and "Next" links, uncomment if you'd like these
<nav id="nav-single">
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'twentyeleven' ) ); ?></span>
<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></span>
- </nav><!-- #nav-single -->
+ </nav> --> <!-- #nav-single -->
<?php get_template_part( 'content', 'single' ); ?>
@@ -29,4 +30,5 @@
</div><!-- #content -->
</div><!-- #primary -->
+<?php get_sidebar(); ?>
<?php get_footer(); ?>
\ No newline at end of file
|