%s

%s

%s

', esc_attr( NOTICE_ID ), esc_html__( 'FaustWP detected incompatible plugins', 'faustwp' ), esc_html__( 'The following active plugins are known to conflict with FaustWP and may cause unexpected behavior:', 'faustwp' ), esc_html( implode( ', ', $warnings ) ) ); } add_action( 'admin_notices', __NAMESPACE__ . '\\show_warning' ); /** * Includes a script for dismissing the plugin conflicts warning. * * Modified from https://github.com/WPTT/admin-notices. * * @return void */ function print_scripts() { if ( ! needs_warning() ) { return; } // Create a nonce. $nonce = wp_create_nonce( NOTICE_ID ); ?>