用法wp\\u delete\\u post:
wp_delete_post($postid, $force_delete = false)
“before\\u delete\\u post”挂钩仅在强制删除帖子时调用。而不是当它被扔进垃圾桶的时候。默认情况下
wp_delete_post($postid)
将邮件发送到垃圾箱。因为默认的$force\\u delete标志为false。因此,您必须通过将标志设置为true来强制删除它:
wp_delete_post( $postid, true);