Skip to content

Instantly share code, notes, and snippets.

@mariadanieldeepak
Last active April 25, 2017 18:35
Show Gist options
  • Save mariadanieldeepak/5d935b24ee9d8b2cb311dd4983242759 to your computer and use it in GitHub Desktop.
Save mariadanieldeepak/5d935b24ee9d8b2cb311dd4983242759 to your computer and use it in GitHub Desktop.
function my_theme_remove_optins() {
if ( is_user_logged_in() ) {
wp_enqueue_script( 'remove-optin', 'remove-optin.js', array( 'jquery' ), wp_get_theme()->get( 'Version' ) );
} elseif ( wp_script_is( 'remove-optin', 'enqueued' ) ) {
// This check is needed to show the Optin.
wp_dequeue_script( 'remove-optin' );
}
}
add_action( 'wp_enqueue_scripts', 'my_theme_remove_optins' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment