0

I'm using the WooCommerce Memberships plugin to restrict post access on my site, and this appears to limit the_content() to only show the first 55 words (the_excerpt()). Any content following that is hidden by the Membership plugin, which is the expected behaviour.

However, I am looking for a way to bypass this restriction programatically and force the_content(), or another function, to always return the full post content.

Is there a way to achieve this?

mujuonly
  • 11,370
  • 5
  • 45
  • 75
dungey_140
  • 2,602
  • 7
  • 34
  • 68

1 Answers1

0

Have you tried get_the_content() function, if plugin applied restrictions on the_content() this should work.

 <?php get_the_content();?>
Adeel Nazar
  • 187
  • 2
  • 8