我想在wordpress中安排帖子时发送通知。在尝试过下面的功能。但没有任何事情没有被触发。
ADD_ACTION( 'future_to_publish', 'on_post_scheduled');
add_action('publish_post','on_post_scheduled',10,2);
add_action('future_post','on_post_scheduled',10,2);
add_action('publish_future_post','on_post_scheduled');
提前致谢。