カスタム投稿でPING送信する

カスタム投稿でPING送信する

function.phpに以下コピペ

//カスタム投稿でPING送信する
function my_custom_pings($post_id){
	wp_schedule_single_event(time(), 'do_pings', array($post_id));
}
add_action('publish_%E7%AF%80%E7%B4%84', 'my_custom_pings');
add_action('publish_blog', 'my_custom_pings');
add_action('publish_%E7%AF%80%E7%B4%84', 'my_custom_pings');
add_action('publish_%E7%AF%80%E7%B4%84', 'my_custom_pings');