install_themes_upload()

最后更新于:2021-11-27 07:33:07

install_themes_upload()

源文件

文件: gc-admin/includes/theme-install.php

function install_themes_upload() {
	?>
<p class="install-help"><?php _e( 'If you have a theme in a .zip format, you may install or update it by uploading it here.' ); ?></p>
<form method="post" enctype="multipart/form-data" class="gc-upload-form" action="<?php echo self_admin_url( 'update.php?action=upload-theme' ); ?>">
	<?php gc_nonce_field( 'theme-upload' ); ?>
	<label class="screen-reader-text" for="themezip"><?php _e( 'Theme zip file' ); ?></label>
	<input type="file" id="themezip" name="themezip" accept=".zip" />
	<?php submit_button( __( 'Install Now' ), '', 'install-theme-submit', false ); ?>
</form>
	<?php
}