get_preferred_from_update_core

Definition:
function get_preferred_from_update_core() {}

Selects the first update version from the update_core option

Return values

returns:response from the API

Source code

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];

}

1636

No comments yet... Be the first to leave a reply!

Leave a comment