Results 1 to 3 of 3

Thread: How to execute plugin after successful login in Wordpress

  1. #1
    Thread Starter
    Newbie sutra's Avatar
    Join Date
    Jun 2011
    Location
    India
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    How to execute plugin after successful login in Wordpress

    Hello guys I need to execute some function (written as wordpress plugin) after user is logged in successfully i.e. all user credentials are stored such as cookies and sessions etc.

    So my code is,

    PHP Code:
    function do_this_func() {
    //some code here
    }
    add_action(???, 'do_this_func'); 
    FYI: I am using WP 3.0+ and tried with following options but they don't product desired result,
    • add_action('login_redirect', 'do_this_func');
    • add_action('wp_login', 'do_this_func');
    • add_action('wp_signon', 'do_this_func');

  2. #2
    jomarkosabel's Avatar
    Join Date
    Mar 2009
    Location
    Philippines
    Posts
    40,722
    Thanks
    166
    Thanked 3,390 Times in 3,261 Posts
    You may also check the official wordpress forum WordPress › Support for answers.
    Please help our moderating team work more efficiently by not sending us support questions via PM. You can read more about how AppThemes support works here. However, you can send a PM to follow up and remind me if I missed your support request/thread.

    Thank you and have a nice day.

  3. #3
    Forum Member lodhig's Avatar
    Join Date
    Oct 2011
    Posts
    19
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I am using WP 3.0+ and tried with following options but they don't product desired result,

    add_action('login_redirect', 'do_this_func');
    add_action('wp_login', 'do_this_func');
    add_action('wp_signon', 'do_this_func');

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. I Can't Login to Wordpress Now?
    By thepsionicstorm in forum Report JobRoller Bugs
    Replies: 2
    Last Post: June 22nd, 2011, 01:32 PM
  2. Successful Facebook integration?
    By mfourcard in forum Help Using ClassiPress
    Replies: 3
    Last Post: April 6th, 2010, 09:48 AM