I just want to know the proper process for updating a parent theme, via the updates section in the wordpress dashboard.
I want all users to be able to get there parent theme updated via a repo, when the user logs in to the dashboard.
I don't need to know how to make a theme or how to make a child or how to enable updates
I just want to know the proper process for updating a parent theme, via the updates section in the wordpress dashboard.
I want all users to be able to get there parent theme updated via a repo, when the user logs in to the dashboard.
I don't need to know how to make a theme or how to make a child or how to enable updates
Share Improve this question asked Feb 5 at 15:27 hanco ikehanco ike 2812 silver badges14 bronze badges 2 |1 Answer
Reset to default 1If your theme is hosted on WordPress.org, the updates will come automatically.
If your theme is not hosted on WordPress.org, then you need a custom updater like :
GitHub Updater (3rd-party plugin),
Custom API for Updates (using wp_get_http and site_transient_update_themes)
wp cli
action when a user logs in to update themes. But, this doesn't really make sense. You should never automate a theme update on login. What happens if the update fails and takes down the site? What does the user do then? – disinfor Commented Feb 5 at 17:06