WP_Theme_Install_List_Table::theme_installer_single()
Prints the wrapper for the theme installer with a provided theme's data. Used to make the theme installer work for no-js.
Метод класса: WP_Theme_Install_List_Table{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WP_Theme_Install_List_Table = new WP_Theme_Install_List_Table(); $WP_Theme_Install_List_Table->theme_installer_single( $theme );
- $theme(stdClass) (обязательный)
- A WordPress.org Theme API object.
Код WP_Theme_Install_List_Table::theme_installer_single() WP Theme Install List Table::theme installer single WP 6.7.1
<?php public function theme_installer_single( $theme ) { ?> <div id="theme-installer" class="wp-full-overlay single-theme"> <div class="wp-full-overlay-sidebar"> <?php $this->install_theme_info( $theme ); ?> </div> <div class="wp-full-overlay-main"> <iframe src="<?php echo esc_url( $theme->preview_url ); ?>"></iframe> </div> </div> <?php }