wp_post_revision_fields

过滤钩子
apply_filters( '_wp_post_revision_fields', $fields, $post )
参数
  • (string[]) $fields List of fields to revision. Contains 'post_title', 'post_content', and 'post_excerpt' by default.
    Required:
  • (array) $post A post array being processed for insertion as a post revision.
    Required:
定义位置
相关勾子
wp_post_revision_field_fieldwp_put_post_revisionwp_delete_post_revisionwp_get_revision_ui_diffwp_restore_post_revision
相关方法
_wp_post_revision_fieldswp_post_revision_title_wp_post_revision_datawp_get_post_revisionswp_list_post_revisionswp_is_post_revision
引入
4.5.0
弃用
-

wp_post_revision_fields: 这是一个钩子(hook),用于向WordPress的文章版本系统添加额外的字段。这个钩子允许插件和主题开发者为文章版本添加额外的信息,并且可以保存这些信息。

过滤保存在文章修订中的字段列表。

默认包括:’post_title’、’post_content’和’post_excerpt’。

不允许的字段:’ID’, ‘post_name’, ‘post_parent’, ‘post_date’, ‘post_date_gmt’, ‘post_status’, ‘post_type’, ‘comment_count’,
和’post_author’。

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

常见问题

FAQs
查看更多 >