Skip to content

Commit

Permalink
Link post title arrows display after title, not before
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottSmith95 committed Aug 12, 2013
1 parent 79eff43 commit 2594e38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content-single.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<div class="entry-title"><h2><?php if (get_theme_mod( 'link_post_title_arrow', false ) == true ) echo '<span class="link-title-arrow">&#8594;</span>'; ?><?php decode_print_post_title() ?></h2></div>
<div class="entry-title"><h2><?php decode_print_post_title() ?><?php if (get_theme_mod( 'link_post_title_arrow', false ) == true ) echo '<span class="link-title-arrow">&#8594;</span>'; ?></h2></div>
</header>
<div class="entry-content"><?php the_content( __( 'continue reading &raquo;', 'decode' ) ); ?></div>
<footer class="entry-meta">
Expand Down
2 changes: 1 addition & 1 deletion content.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<?php the_post_thumbnail(); ?>
</a>
<?php endif; ?>
<div class="entry-title"><h2><?php if (get_theme_mod( 'link_post_title_arrow', false ) == true ) echo '<span class="link-title-arrow">&#8594;</span>'; ?><?php decode_print_post_title() ?></h2></div>
<div class="entry-title"><h2><?php decode_print_post_title() ?><?php if (get_theme_mod( 'link_post_title_arrow', false ) == true ) echo '<span class="link-title-arrow">&#8594;</span>'; ?></h2></div>
</header>
<div class="entry-content"><?php the_content( __( 'continue reading &raquo;', 'decode' ) ); ?></div>
<footer class="entry-meta">
Expand Down

0 comments on commit 2594e38

Please sign in to comment.