在 WooCommerce 会员插件中有一个名为 class-wc-memberships-restrictions.php 的文件,该文件具有以下类和构造函数,并且该构造函数有很多过滤器,但我想从我的子主题 functions.php 文件中删除此过滤器
如何从子主题 functions.php 文件中删除此过滤器
class WC_Memberships_Restrictions {
public function __construct() {
add_filter( 'the_content', array( $this, 'restrict_content' ) );
}