描述描述
移动一个文章或页面到回收站,如果禁用了回收站,文章或页面将被永久删除。
Usage
<?php wp_trash_post( $post_id ); ?>
parameters
parameters | data type | Required or not | descriptive | default value |
---|---|---|---|---|
$post_id | integer (math.) | clogged | 文章ID | 0 |
return value
(mixed) 失败时返回False。
usage example
删除默认的,ID为1,标题为 “Hello World” 的WordPress文章。
<?php wp_trash_post( 1 ); ?>