From 9e96624b9cc4404d95f3754eb2e5be8a708b1d29 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Thu, 14 Mar 2024 17:31:13 +0100 Subject: [PATCH] remove deprecated "statify_skip_tracking" filter (#285) This filter is deprecated since 1.5.0 with "statify__skip_tracking" as direct replacement. Remove it. --- inc/class-statify.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/inc/class-statify.php b/inc/class-statify.php index 008e85e..9663089 100755 --- a/inc/class-statify.php +++ b/inc/class-statify.php @@ -237,9 +237,6 @@ public static function user_can_see_stats() { * @since 2.0.0 Migration from Statify_Frontend to Statify class. */ private static function skip_tracking() { - if ( function_exists( 'apply_filters_deprecated' ) ) { - apply_filters_deprecated( 'statify_skip_tracking', array( '' ), '1.5.0', 'statify__skip_tracking' ); - } // Skip tracking via Hook. $skip_hook = apply_filters( 'statify__skip_tracking', null ); if ( null !== $skip_hook ) {