Sorry for not getting back on this, but work took over my priority list for the past few weeks…
I haven’t found an answer. Here’s what I’m wondering, though…The theme doesn’t include the the_content
filter twice, that I can tell, but it does make calls on content templates from the single.php.
Here’s what single looks like:
<?php get_header(); ?>
<div id="primary" class="content-area column">
<div class="content-loop" role="main" <?php hybrid_attr( 'content' ); ?>>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'breadcrumbs' ); ?>
<?php get_template_part( 'content', 'single' ); ?>
<?php supernews_related_posts(); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar( 'secondary' ); ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>