Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function my_theme_remove_optins() {
  2. if ( is_user_logged_in() ) {
  3. wp_enqueue_script( 'remove-optin', 'remove-optin.js', array( 'jquery' ), wp_get_theme()->get( 'Version' ) );
  4. } elseif ( wp_script_is( 'remove-optin', 'enqueued' ) ) {
  5. // This check is needed to show the Optin.
  6. wp_dequeue_script( 'remove-optin' );
  7. }
  8. }
  9. add_action( 'wp_enqueue_scripts', 'my_theme_remove_optins' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement