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



wp_post_revision_fields › WordPress过滤钩子

Since4.5.0
已弃用n/a
apply_filters( '_wp_post_revision_fields', $fields, $post )
参数: (2)
  • (string[]) $fields List of fields to revision. Contains 'post_title', 'post_content', and 'post_excerpt' by default.
    Required: Yes
  • (array) $post A post array being processed for insertion as a post revision.
    Required: Yes
定义在:
文档:

Filters the list of fields saved in post revisions.

Included by default: 'post_title', 'post_content' and 'post_excerpt'.

Disallowed fields: 'ID', 'post_name', 'post_parent', 'post_date', 'post_date_gmt', 'post_status', 'post_type', 'comment_count', and 'post_author'.





源码

$fields = apply_filters( '_wp_post_revision_fields', $fields, $post );