wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
install_themes_upload › WordPress Function
Seit2.8.0
Veraltetn/v
› install_themes_upload ( Keine Parameter )
Definiert in: |
|
Codex: |
Noch keine Beschreibung.
Ähnliche Funktionen: install_themes_dashboard, install_plugins_upload, install_theme_information, list_theme_updates, install_themes_feature_list
Quellcode
function install_themes_upload() { ?> <p class="install-help"><?php _e( 'If you have a theme in a .zip format, you may install it by uploading it here.' ); ?></p> <form method="post" enctype="multipart/form-data" class="wp-upload-form" action="<?php echo self_admin_url( 'update.php?action=upload-theme' ); ?>"> <?php wp_nonce_field( 'theme-upload' ); ?> <label class="screen-reader-text" for="themezip"><?php _e( 'Theme zip file' ); ?></label> <input type="file" id="themezip" name="themezip" /> <?php submit_button( __( 'Install Now' ), '', 'install-theme-submit', false ); ?> </form> <?php }