Add custom code before post content via functions.php
<?php
function my_before($content) {
if (is_single()) {
$beforecontent = previous_post_link(); ?> | <?php next_post_link();
$content = $beforecontent . $content;
return $content;
}
return $content;
}
add_filter('the_content', 'my_before');