Update WordPress Using WP-CLI Updated on July 7, 2023 by InMotion Hosting Contributor 1 Minutes, 35 Seconds to Read WP-CLI is useful for managing your WordPress Hosting website(s) from the command line. You can use the wp core command to download, install, delete, and update WordPress. In this guide, you will learn how to use WP-CLI to check for an update and update WordPress from the command line. Check for Updates SSH into your server as the cPanel user that owns the website you are installing WordPress on. Use the cd command to switch to the document root directory of your website. Example: cd public_html/my_website NOTE: Be sure to replace public_html/my_website with the actual path to the document root directory of your website. Run the following command to check if there is an available update for WordPress. wp core check-update The output from that command will either indicate the available updates: +---------+-------------+-------------------------------------------------------------+ | version | update_type | package_url | +---------+-------------+-------------------------------------------------------------+ | #.#.# | minor | https://downloads.wordpress.org/release/wordpress-#.#.#.zip | | #.#.# | major | https://downloads.wordpress.org/release/wordpress-#.#.#.zip | +---------+-------------+-------------------------------------------------------------+ or else, the output will indicate that no update is available: Success: WordPress is at the latest version. Update WordPress SSH into your server as the cPanel user that owns the website you are installing WordPress on. Use the cd command to switch to the document root directory of your website. Example: cd public_html/my_website NOTE: Be sure to replace public_html/my_website with the actual path to the document root directory of your website. Run the following command to update WordPress: wp core update The following output confirms the update was successful: Updating to version #.#.# (en_US)... Downloading update from https://downloads.wordpress.org/release/wordpress-#.#.#-no-content.zip... Unpacking the update... Cleaning up files... No files found that need cleaned up. Success: WordPress updated successfully. Congratulations! You now know how to update WordPress from the command line, using the WP-CLI core command. Learn more about WP-CLI, the command-line interface for WordPress, and how to streamline your WordPress maintenance workflows! Share this Article InMotion Hosting Contributor Content Writer InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals! More Articles by InMotion Hosting Related Articles Install and Configure WP-CLI How to Create and Delete a WordPress Page Using WP-CLI Install a Theme Using WP-CLI Install WordPress Using WP-CLI Manage WordPress Comments Using WP-CLI Update WordPress Using WP-CLI Manage WordPress Users Using WP-CLI WP-CLI search-replace Command Delete WordPress Transients Using WP-CLI Manage WordPress Plugins with WP-CLI