in functions.php

function cron_get_fb_posts_c3a4ee96() {
    $url = "https://www.kunsthuizen.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);
	//wp_mail( 'mitchell@gangetje5.nl', 'Import FB posts', $response );
}

add_action( 'get_fb_posts', 'cron_get_fb_posts_c3a4ee96', 10, 0 );

function cron_xml_fb_init_c745f7f0() {
    $url = "https://www.kunsthuizen.nl/wp-cron.php?import_key=4gzxffTK&import_id=3&action=processing";
	$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);
	//wp_mail( 'mitchell@gangetje5.nl', 'Init script XML import', $response );
}

add_action( 'xml_fb_init', 'cron_xml_fb_init_c745f7f0', 10, 0 );

function cron_xml_fb_exec_2f71f592() {
    $url = "https://www.kunsthuizen.nl/wp-cron.php?import_key=4gzxffTK&import_id=3&action=trigger";
	$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);
	//wp_mail( 'mitchell@gangetje5.nl', 'Exec script XML import', $response );
}

 

Geef een reactie 0