rest_comment_trashable WordPress Filter Hook

The rest_comment_trashable hook allows you to trash a comment via the REST API.

apply_filters( 'rest_comment_trashable', bool $supports_trash, WP_Comment $comment ) #

Filters whether a comment can be trashed via the REST API.


Description

Return false to disable trash support for the comment.


Top ↑

Parameters

$supports_trash

(bool)Whether the comment supports trashing.

$comment

(WP_Comment)The comment object being considered for trashing support.


Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.