Fixed! 🙂 I removed code I mentioned above, then placed [apcode language="php"] <?php the_excerpt(); ?> [/apcode] in content.php file where I needed the excerpt to show. Awesome plugin! Thank you!
View Questionhellothere
38 Reputation
Answers
Ah, figured out my problem. In functions.php I have code to show excerpt on post page: [apcode language="php"] add_filter( 'the_content', 'my_the_content_filter', 20 ); function my_the_content_filter(...
View Question