芝麻web文件管理V1.00
编辑当前文件:/home/r5772835/public_html/ycreate.jp/wp-content/themes/snow-monkey/app/constructor/updater.php
'https://snow-monkey.2inc.org/category/update-info/', ) ); /** * There is a case that comes back to GitHub's zip url. * In that case it returns false because it is illegal. * * @param string $url * @return string|false */ add_filter( 'inc2734_github_theme_updater_zip_url_inc2734/snow-monkey', function( $url ) { if ( 0 !== strpos( $url, 'https://snow-monkey.2inc.org/' ) ) { return false; } return $url; } ); /** * Customize request URL that for updating * * @return string */ add_filter( 'inc2734_github_theme_updater_request_url_inc2734/snow-monkey', function( $url, $user_name, $repository, $version ) { return ! $version ? 'https://snow-monkey.2inc.org/github-api/response.json' : sprintf( 'https://snow-monkey.2inc.org/github-api/packages/%1$s/response.json', $version ); }, 10, 4 );