Help! I want to change my "Previous" and "Next" post links to use the actual post titles. I have done all kinds of online research and code manipulation without any success.
I am using the Yoko theme. Here is my current single.php code. What do I need to update it to be? My website is www.thelawstudentswife.com
<div id="content">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'single' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
<nav id="nav-below">
<div class="nav-previous"><?php previous_post_link( '%link', '' . _x( '← Previous Post', 'Previous post link', 'yoko' ) . '' ); ?></div>
<div class="nav-next"><?php next_post_link( '%link', __('') . _x( 'Next Post →', 'Next post link', 'yoko' ) . '' ); ?></div>
</nav><!-- end nav-below -->
</div><!-- end content -->