wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



rest_{$this->post_type}_trashable › Hooks de Filtros WordPress

Desde4.7.0
Obsoleton/a
apply_filters( "rest_{$this->post_type}_trashable", $supports_trash, $post )
Parâmetros: (2)
  • (bool) $supports_trash Whether the post type support trashing.
    Required: Yes
  • (WP_Post) $post The Post object being considered for trashing support.
    Required: Yes
Definido em:
Codex:

Filters whether a post is trashable.

The dynamic portion of the hook name, $this->post_type, refers to the post type slug.

Possible hook names include:

  • rest_post_trashable
  • rest_page_trashable
  • rest_attachment_trashable

Pass false to disable Trash support for the post.





Fonte

$supports_trash = apply_filters( "rest_{$this->post_type}_trashable", $supports_trash, $post );