find_core_update

函数
find_core_update ( $version, $locale )
参数
  • (string) $version Version string to find the update for.
    Required:
  • (string) $locale Locale to find the update for.
    Required:
返回值
  • (object|false) The core update offering on success, false on failure.
定义位置
相关方法
find_core_auto_updatelist_core_updateundismiss_core_updateget_core_updatesdismiss_core_update
引入
2.7.0
弃用
-

find_core_update – 这个函数检查WordPress core的更新是否可用。它返回一个包含更新信息的数组,如果没有更新,则返回false。

查找WordPress core的可用更新。

function find_core_update( $version, $locale ) {
	$from_api = get_site_transient( 'update_core' );

	if ( ! isset( $from_api->updates ) || ! is_array( $from_api->updates ) ) {
		return false;
	}

	$updates = $from_api->updates;
	foreach ( $updates as $update ) {
		if ( $update->current == $version && $update->locale == $locale ) {
			return $update;
		}
	}
	return false;
}

常见问题

FAQs
查看更多 >