Themes: Remove the Live Preview link when installing a block theme from a zip archive.
This changeset removes the Live Preview link for block-based themes when installing for a zip archive, since the customizer is disabled by default for block themes. Follow-up to [52353]. Props alanjacobmathew, hellofromTonya, antonvlasenko, ironprogrammer. Fixes #54578. Built from https://develop.svn.wordpress.org/trunk@52802 git-svn-id: http://core.svn.wordpress.org/trunk@52391 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f1d4f7f0f7
commit
e89229886b
|
@ -115,7 +115,7 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin {
|
||||||
|
|
||||||
$install_actions = array();
|
$install_actions = array();
|
||||||
|
|
||||||
if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) {
|
if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) && ! $theme_info->is_block_theme() ) {
|
||||||
$customize_url = add_query_arg(
|
$customize_url = add_query_arg(
|
||||||
array(
|
array(
|
||||||
'theme' => urlencode( $stylesheet ),
|
'theme' => urlencode( $stylesheet ),
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.0-alpha-52801';
|
$wp_version = '6.0-alpha-52802';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue