rest_comment_trashable

过滤钩子
apply_filters( 'rest_comment_trashable', ( EMPTY_TRASH_DAYS > 0 )
参数
  • (bool) $supports_trash Whether the comment supports trashing.
    Required:
  • (WP_Comment) $comment The comment object being considered for trashing support.
    Required:
定义位置
相关勾子
rest_comment_queryget_comment_textget_comment_datecomment_on_trashget_comment_type
相关方法
wp_comment_trashnoticeget_comment_typeget_comment_dateget_comment_textget_comment_timeget_comment_statuses
引入
4.7.0
弃用
-

rest_comment_trashable – 这个钩子用来确定评论是否可以通过WordPress REST API被扔掉(移到垃圾桶)。如果需要,开发者可以使用这个钩子来改变这个行为。

过滤评论是否可以通过REST API进行垃圾处理。

返回false表示禁用对评论的垃圾支持。

$supports_trash = apply_filters( 'rest_comment_trashable', ( EMPTY_TRASH_DAYS > 0 ), $comment );

常见问题

FAQs
查看更多 >