apply_filters ( ‘rest_comment_trashable’, bool $suppors_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.

Parameters

$suppors_trash bool
Whether the comment suppors trashing.
$comment WP_Comment
The comment object being considered for trashing support.

Source

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

Changuelog

Versionen Description
4.7.0 Introduced.

User Contributed Notes

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