if (!wp_next_scheduled('get_fb_posts')){
  wp_schedule_event(time(), '5min', 'get_fb_posts',10);
}

add_action('get_fb_posts', 'get_fb_posts_function');
 
function get_fb_posts_function() {
	$url = "https://kh.gangetje5.nl/importfb.php";
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL, $url);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
	curl_setopt($ch, CURLOPT_TIMEOUT_MS, 0); 
	curl_setopt($ch, CURLOPT_NOSIGNAL, 1);
	$response = curl_exec($ch);
	curl_close($ch);
	echo "resultaat: ".$response;
	wp_mail( 'mitchell@gangetje5.nl', 'Posts binnen gehaald', $response );
}

 

Geef een reactie 0