Wordpressで記事投稿直後にバックグラウンドで処理を行いたいのですが、
どうやら wp_schedule_single_event がきちんとトリガーされていないようです。
以下のコードのどこが間違っているか、ご指摘頂ければ幸いです!

// functions.php

add_action('save_post', 'registerMyCron');

function registerMyCron(){
  wp_schedule_single_event(time(), 'myCronAction');
}

add_action('myCronAction', 'doSomething');

function doSomething(){
  // 何らかの処理...
}