Das ist eine dumme Frage ... Ich habe eine Aktion geplant, die stündlich ausgeführt wird: if(!wp_next_scheduled('my_hourly_events')) wp_schedule_event(time(), 'hourly', 'my_hourly_events'); add_action('my_hourly_events', 'the_function_to_run'); function the_function_to_run(){ echo 'it works!'; }...