Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Created July 23, 2024 13:34
Show Gist options
  • Save xlplugins/0226b48785b0559ab6d997ebe4ea53cc to your computer and use it in GitHub Desktop.
Save xlplugins/0226b48785b0559ab6d997ebe4ea53cc to your computer and use it in GitHub Desktop.
Funnelkit: Remove Admin notices
class WFACP_Admin_Remove_Notice {
public function __construct() {
if ( is_admin() ) {
add_action( 'admin_notices', array( $this, 'remove_admin_notice' ), 9 );
}
}
public function remove_admin_notice() {
if ( class_exists( 'WFFN_Admin_Notifications' ) ) {
$instance = WFFN_Admin_Notifications::get_instance();
if ( $instance instanceof WFFN_Admin_Notifications ) {
remove_action( 'admin_notices', array( $instance, 'register_notices' ) );
}
}
}
}
new WFACP_Admin_Remove_Notice();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment