wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_check_revisioned_meta_fields_have_changed › WordPress Function

Depuis6.4.0
Dépréciéen/a
wp_check_revisioned_meta_fields_have_changed ( $post_has_changed, $last_revision, $post )
Paramètres: (3)
  • (bool) $post_has_changed Whether the post has changed.
    Requis: Oui
  • (WP_Post) $last_revision The last revision post object.
    Requis: Oui
  • (WP_Post) $post The post object.
    Requis: Oui
Retourne:
  • (bool) Whether the post has changed.
Défini(e) dans:
Codex:

Check whether revisioned post meta fields have changed.



Source

function wp_check_revisioned_meta_fields_have_changed( $post_has_changed, WP_Post $last_revision, WP_Post $post ) {
	foreach ( wp_post_revision_meta_keys( $post->post_type ) as $meta_key ) {
		if ( get_post_meta( $post->ID, $meta_key ) !== get_post_meta( $last_revision->ID, $meta_key ) ) {
			$post_has_changed = true;
			break;
		}
	}
	return $post_has_changed;
}