遗憾的是,删除帖子时没有触发钩子。但我只是查看了wordpress代码,找到了正确的钩子:
* @uses do_action() on \'trashed_post_comments\' after trashing
在函数中
wp_trash_post_comments()
然后添加如下操作:
add_action(\'trashed_post_comments\', \'sp_trashed_post_comments\', 10, 2);
...
function sp_trashed_post_comments($postID, $statuses) {
$commentIDs = array_keys($statuses);
print_r($commentIDs); // echoes all commentIDs associated with the deleted post
}