dainiuxt
3/24/2017 - 9:36 AM

Add custom code before post content via functions.php

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');