You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Again quick and dirty but it works for my needs. Since its so simple I think it should be available natively in plugin itself, as there are many use cases where people want to trigger update check manually.
Edit: sorry for code formatting, new on github issues and it's not very intuitive on how to do it...
The text was updated successfully, but these errors were encountered:
I'd rather not change the WordPress admin UI any more than necessary. That's one of the reasons why all of the debugging info is only in the Debug Bar, not in a separate admin page or a widget. PUC is intended to be nearly invisible to end-users.
That said, you're of course welcome to add an Admin Bar/Toolbar link in your theme.
It sucks that we need debug bar plugin to check for updates. The way I streamlined it (quick and dirty) is to add new admin bar link:
<?php $wp_admin_bar->add_node( array( 'id' => 'theme-check-for-update', 'title' => 'Check for update', 'parent' => 'theme-version', 'href' => '/wp-admin/themes.php?check_for_updates=true&secret=SECRET_CODE', 'meta' => array( 'class' => 'theme-check-for-update', 'title' => 'Check for update', ) ) );?>
and check in functions.php (right after the buildUpdateChecker from documentation
Again quick and dirty but it works for my needs. Since its so simple I think it should be available natively in plugin itself, as there are many use cases where people want to trigger update check manually.
Edit: sorry for code formatting, new on github issues and it's not very intuitive on how to do it...
The text was updated successfully, but these errors were encountered: