_wp_post_revision_fields WordPress Filter Hook

The wp_post_revision_fields hook allows you to add your own fields to the post revision form. This can be useful for adding extra data to revisions, or for hiding certain fields from the form.

apply_filters( '_wp_post_revision_fields', array $fields, array $post ) #

Filters the list of fields saved in post revisions.


Description

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’.


Top ↑

Parameters

$fields

(array)List of fields to revision. Contains 'post_title', 'post_content', and 'post_excerpt' by default.

$post

(array)A post array being processed for insertion as a post revision.


Top ↑

Source

File: wp-includes/revision.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.5.0The $post parameter was added.
2.6.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.