首页 > 解决方案 > 使用 WooCommerce 会员资格时,Wordpress 强制 the_content() 返回完成

问题描述

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

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

有没有办法做到这一点?

标签: phpwordpresswoocommercewoocommerce-memberships

解决方案


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

 <?php get_the_content();?>

推荐阅读