get_preferred_from_update_core

函数
get_preferred_from_update_core ( No parameters )
返回值
  • (object|array|false) The response from the API on success, false on failure.
定义位置
相关方法
get_gmt_from_datewp_update_core_maybe_update_coreget_registered_metadataget_feed_build_date
引入
2.7.0
弃用
-

get_preferred_from_update_core函数是一个WordPress函数,它从WordPress核心更新包中检索一个指定文件的首选版本: 这个函数把文件名作为参数,并返回指定文件的首选版本。

从update_core选项中选择第一个更新版本。

function get_preferred_from_update_core() {
	$updates = get_core_updates();
	if ( ! is_array( $updates ) ) {
		return false;
	}
	if ( empty( $updates ) ) {
		return (object) array( 'response' => 'latest' );
	}
	return $updates[0];
}

常见问题

FAQs
查看更多 >