wpseek.com
WordPress开发者和主题制作者的搜索引擎



rest_{$this->post_type}_trashable › WordPress过滤钩子

Since4.7.0
已弃用n/a
apply_filters( "rest_{$this->post_type}_trashable", $supports_trash, $post )
参数: (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
定义在:
文档:

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.





源码

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