update_post_parent_caches

函数


update_post_parent_caches ( $posts )
参数
  • (WP_Post[])
    $posts
    Array of post objects.
    Required:
定义位置
  • wp-includes/post.php
    , line 7479
引入
6.1.0
弃用

更新一个文章对象列表的父文章缓存。

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 );
	}
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。