I want to insert the previous and next buttons right after the content like I did in my code. But in reality those two buttons are after all my plugins (share buttons, fb comments, related posts).
How can I cahange the priority and instert above all others?
<?php the_content(' '); ?>
<div align="center">
<div class="navigation"><p>
<?php previous_post_link('%link', '<<', TRUE); ?>
<?php next_post_link('%link', '>>', TRUE); ?>
</p></div>
</div>
Thank you.