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' ) );
}