WP HOOKS
filtrod 2.6.0

_wp_post_revision_fields

Args 2Plik wp-includes/revision.phpDokumentacja WP ↗

Opis — z kodu źródłowego

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

Parametry

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

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( '_wp_post_revision_fields', 'twoja_funkcja', 10, 2 );

function twoja_funkcja($param_1, $param_2) {
	// Twój kod
}

Popularne w tej kategorii