0

我正在使用 WooCommerce Memberships 插件来限制我网站上的帖子访问,这似乎the_content()仅限于显示前 55 个单词 ( the_excerpt())。其后的任何内容都被 Membership 插件隐藏,这是预期的行为。

但是,我正在寻找一种以编程方式绕过此限制并强制 the_content() 或其他函数始终返回完整帖子内​​容的方法。

有没有办法做到这一点?

4

1 回答 1

0

您是否尝试过 get_the_content() 函数,如果插件对 the_content() 应用了限制,这应该可以工作。

 <?php get_the_content();?>
于 2018-05-09T16:32:06.427 回答