apply_filters( ‘_wp_post_revision_fields’, string[] $fields, array $post )

In this article

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

Parameters

$fieldsstring[]
List of fields to revision. Contains 'post_title', 'post_content', and 'post_excerpt' by default.
$postarray
A post array being processed for insertion as a post revision.

Source

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

Changelog

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

User Contributed Notes

You must log in before being able to contribute a note or feedback.