• HI, i’ve scheduled this events

    function my_1activation() {
    	if ( !wp_next_scheduled( 'wp-hourly-event' ) ) {
    		wp_schedule_event( 1390334400, 'hourly', 'wep-hourly-event');
    	}
    }
    
    add_action('wp', 'my_1activation');
    
    add_action('wep-hourly-event', 'wep_hourly_action');

    But the function wep_hourly_action() run a lot of time more than a single time in a hour. It runs about 30-40 times. In what am i wrong? Thank you

  • The topic ‘Schduled events run too much’ is closed to new replies.