wpseek.com
WordPress开发者和主题制作者的搜索引擎



update_post_author_caches › WordPress Function

Since6.1.0
已弃用n/a
update_post_author_caches ( $posts )
参数:
  • (WP_Post[]) $posts Array of post objects.
    Required: Yes
定义在:
文档:

Updates post author user caches for a list of post objects.



源码

function update_post_author_caches( $posts ) {
	/*
	 * cache_users() is a pluggable function so is not available prior
	 * to the `plugins_loaded` hook firing. This is to ensure against
	 * fatal errors when the function is not available.
	 */
	if ( ! function_exists( 'cache_users' ) ) {
		return;
	}

	$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 );
}