当使用WooCommerce Memberships时,Wordpress强制the_content()返回完成

问题描述 投票:0回答:1

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

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

有没有办法实现这个目标?

php wordpress woocommerce woocommerce-memberships
1个回答
0
投票

您是否尝试过get_the_content()函数,如果插件对the_content()应用了限制,那么这应该有效。

 <?php get_the_content();?>
© www.soinside.com 2019 - 2024. All rights reserved.