wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



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

Od4.7.0
Przestarzałyn/a
apply_filters( "rest_{$this->post_type}_trashable", $supports_trash, $post )
Parametry: (2)
  • (bool) $supports_trash Whether the post type support trashing.
    Wymagane: Tak
  • (WP_Post) $post The Post object being considered for trashing support.
    Wymagane: Tak
Zdefiniowane na:
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.





Źródło

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