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 all references

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


Top ↑

Changelog

Changelog
Version Description
4.7.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.