Support » Developing with WordPress » is_user_logged_in() ALWAYS returns false

  • Resolved danhgilmore

    (@danhgilmore)


    I have a custom login plugin that I use for my installation. This runs every time a page is loaded. If the user is logged in, get out of the plugin.

    Unfortunately, no matter what, is_user_logged_in() always returns false, thus forcing the user to log in each and every time a page is loaded. Any ideas?

    function my_func(){
      if (is_user_logged_in())
      {
        // User is logged in, so get out of this plugin.
        return;
      } 
      // LOG THE USER IN.
    }
    add_action( 'init', 'my_func' );

    I think it has something to do with $current_user being defined incorrectly, as seen in the link

    https://pbs.twimg.com/media/DW-CBf0UMAA0vY3.jpg:large

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘is_user_logged_in() ALWAYS returns false’ is closed to new replies.