wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



update_post_parent_caches › WordPress Function

Seit6.1.0
Veraltetn/v
update_post_parent_caches ( $posts )
Parameter:
  • (WP_Post[]) $posts Array of post objects.
    Erforderlich: Ja
Definiert in:
Codex:

Updates parent post caches for a list of post objects.



Quellcode

function update_post_parent_caches( $posts ) {
	$parent_ids = wp_list_pluck( $posts, 'post_parent' );
	$parent_ids = array_map( 'absint', $parent_ids );
	$parent_ids = array_unique( array_filter( $parent_ids ) );

	if ( ! empty( $parent_ids ) ) {
		_prime_post_caches( $parent_ids, false );
	}
}