Find out if there is a available core update?

There is get_core_updates().

Note that you might need to manually include admin file that declares it, if running in front end and such.

Example use:

require_once ABSPATH . '/wp-admin/includes/update.php';
print_r( get_core_updates() );

Example return:

Array
(
    [0] => stdClass Object
        (
            [response] => latest
            [download] => http://wordpress.org/wordpress-3.4.2.zip
            [locale] => en_US
            [packages] => stdClass Object
                (
                    [full] => http://wordpress.org/wordpress-3.4.2.zip
                    [no_content] => http://wordpress.org/wordpress-3.4.2-no-content.zip
                    [new_bundled] => http://wordpress.org/wordpress-3.4.2-new-bundled.zip
                    [partial] => 
                )

            [current] => 3.4.2
            [php_version] => 5.2.4
            [mysql_version] => 5.0
            [new_bundled] => 3.2
            [partial_version] => 
            [dismissed] => 
        )

)

Leave a Comment