install_theme_information [ WordPress Function ]
install_theme_information ( No parameters )
| Defined at: |
|
Benzer Fonksiyonlar: install_plugin_information, install_theme_search_form, install_themes_upload, install_themes_feature_list, install_themes_dashboard
Display theme information in dialog box form.
Source
<?php
function install_theme_information() {
global $tab, $themes_allowedtags, $wp_list_table;
$theme = themes_api( 'theme_information', array( 'slug' => stripslashes( $_REQUEST['theme'] ) ) );
if ( is_wp_error( $theme ) )
wp_die( $theme );
iframe_header( __('Theme Install') );
$wp_list_table->theme_installer_single( $theme );
iframe_footer();
exit;
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- PHPXRef 0.7 : WordPress : Detail view of theme-install.php
install_theme_search_form() install_themes_dashboard() install_themes_upload () display_theme() display_themes() install_theme_information(). Functions ...
phpxref.ftwr.co.uk - wp-admin/includes/theme-install.php source
160 * 161 * @since 2.8.0 162 */ 163 function install_theme_information() { 164 global $tab, $themes_allowedtags, $wp_list_table; 165 166 $theme ...
phpxref.ftwr.co.uk - <?php /** * WordPress Theme Install Administration API ...
@since 2.8.0 */ function install_theme_information() { global $tab, $ themes_allowedtags, $wp_list_table; $theme = themes_api( 'theme_information', array( ...
core.svn.wordpress.org - Wordpress Functions History Table - Ozh
install_theme_information, 2.8, ·. install_theme_search, 2.8, ·. install_theme_search_form, 2.8, ·. install_themes_dashboard, 2.8, ·. install_themes_feature_list ...
planetozh.com