Manobala S
Results
1
comments of
Manobala S
Here is the code ``` if(is_admin() && strpos($_SERVER['PHP_SELF'], 'themes.php') !== false) { require get_template_directory() . '/plugin-update-checker/plugin-update-checker.php'; $myUpdateChecker = Puc_v4_Factory::buildUpdateChecker( 'https://github.com/username/repo-name', __FILE__, get_template() ); $myUpdateChecker->setAuthentication('ghp_xxxxxxxxxxxxxxxxxxxxxxxx'); $myUpdateChecker->setBranch('main'); $myUpdateChecker->checkForUpdates(); } ```