Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
theme_installer_single example
$theme
=
themes_api
(
'theme_information', array
(
'slug' =>
wp_unslash
(
$_REQUEST
[
'theme'
]
)
)
)
;
if
(
is_wp_error
(
$theme
)
)
{
wp_die
(
$theme
)
;
}
iframe_header
(
__
(
'Theme Installation'
)
)
;
if
(
!
isset
(
$wp_list_table
)
)
{
$wp_list_table
=
_get_list_table
(
'WP_Theme_Install_List_Table'
)
;
}
$wp_list_table
->
theme_installer_single
(
$theme
)
;
iframe_footer
(
)
;
exit
;
}