钩入delete_post
. 下面的代码应该递归运行,如果有孙子,则会删除未测试代码
add_action(\'delete_post\', \'wpse53967_clear_all_childs\');
function wpse53967_clear_all_childs($post_id){
$childs = get_post(
\'post_parent\' => $post_id,
\'post_type\' => \'post-type\'
);
if(empty($childs))
return;
foreach($childs as $post){
wp_delete_post($post->ID, true); // true => bypass trash and permanently delete
}
}