有一个动作叫做trashed_post_comments
在注释设置为post-trashed
地位你可以加入其中:
add_action( \'trashed_post_comments\', \'wpse134528_really_trash_comments\' );
function wpse134528_really_trash_comments( $post_id ) {
$args = array(
\'post_id\' => $post_id,
\'status\' => \'post-trashed\',
);
$comments = get_comments( $args );
foreach( $comments as $comment ) {
wp_trash_comment( $comment->comment_id );
}
}
参考文献
trashed_post_comments
动作挂钩
get_comments()
wp_trash_comment()
希望这能有所帮助,尽管我不知道为什么评论的状态设置为
post-trashed
会弄乱你的主题。。。