Reply To: Blog Page broken after update to 1.2.9

Home Forums Support Blog Page broken after update to 1.2.9 Reply To: Blog Page broken after update to 1.2.9

Home Forums Support Blog Page broken after update to 1.2.9 Reply To: Blog Page broken after update to 1.2.9

#86914
Tom
Lead Developer
Lead Developer

With the next update, you’ll have to add some code like this to your child theme’s functions.php file:

add_filter('generate_more_tag','generate_disable_more_tag');
function generate_disable_more_tag()
{
      return false;
}

Then you’ll never have to do anything again.

For now, you can set the $more_tag in content.php to false.

In the changelog, you’ll find this line:

Show read more link when using more tag, even when blog content is set to show excerpts

GeneratePress is still quite young, so things will change from time to time (not dramatically). This was a feature I’ve had a few people ask for, so I went for it.

That being said, I want to please everyone, which is why I always provide a workaround, and in this case a new filter to meet your needs (and maybe others).

Sorry for the inconvenience.