常用函数-wp_delete_comment()
说明
删除评论编号,之后可能更新文章评论总数。
如果评论被许可并具有相应可用的文章编号,文章评论总数将被更新。
用法
<?php wp_delete_comment( $comment_id ) ?>
参数
$comment_id
(整数)(必需)评论编号
默认值:None
返回的值
(布尔值)
删除评论请求失败,返回false,成功则返回true。
示例
注释
- 用法:$wpdb
- 用法: do_action()在评论编号上调用'delete_comment'钩子
- 用法: do_action()在评论编号上调用'wp_set_comment_status'钩子,以'delete' 集为第二个参数
- 用法: wp_transition_comment_status() 与$comment对象共同调用'wp_set_comment_status'钩子
- 用法:get_comment()
- 用法:用 wp_update_comment_count()更新评论总数
- 用法:用 clean_comment_cache() 从缓存中删除评论
修改记录
自2.0.0版本后
源文件
wp_delete_comment() 位于 wp-includes/comment.php中。
相关资源
分类:中文手册