/* jfuller - CONRIC PR this moves the related posts just below the content (above newsletter sign up) instead of at the very bottom of the blog */ add_filter ('the_content', 'display_related_posts', 9); /* 9 so it's above newsletter sign up */ function display_related_posts ($content) { ob_start(); avada_render_related_posts(get_post_type()); $content .= ob_get_clean(); return $content; } ?>
Leave A Comment
You must be logged in to post a comment.