Home › Forums › Pro Support › "read-more" link inline › Reply To: "read-more" link inline
December 12, 2018 at 2:59 pm
#6850
Participant
I found the problem. It’s a bug in the plugin. On line 473 of wp_show_posts.php it has the following:
<?php the_content(false, false); ?>
The first argument is supposed to be null, not false (apparently these are not equivalent in php). If I change it to null (or just call the_content with no arguments) then the filter works.
https://developer.wordpress.org/reference/functions/the_content/
https://stackoverflow.com/questions/137487/null-vs-false-vs-0-in-php