update_post_author_caches

函数
update_post_author_caches ( $posts )
参数
  • (WP_Post[]) $posts Array of post objects.
    Required:
定义位置
相关方法
update_post_parent_cachesupdate_post_cachesupdate_post_cacheupdate_postmeta_cacheupdate_post_thumbnail_cache
引入
6.1.0
弃用
-

update_post_author_caches: 这个函数更新一个文章的作者的缓存。它需要一个参数:$post_id。$post_id是需要更新作者缓存的文章的ID。

为文章对象的列表更新文章作者用户缓存。

function update_post_author_caches( $posts ) {
	$author_ids = wp_list_pluck( $posts, 'post_author' );
	$author_ids = array_map( 'absint', $author_ids );
	$author_ids = array_unique( array_filter( $author_ids ) );

	cache_users( $author_ids );
}

常见问题

FAQs
查看更多 >