帮助我想更改我的“上一篇”和“下一篇”帖子链接,以使用实际的帖子标题。我做过各种各样的在线研究和代码操作,但都没有成功。
我用的是洋子主题。这是我目前的单曲。php代码。我需要将其更新为什么?我的网站是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 -->