Remove customizer starter (#2904)

This commit is contained in:
Ben Word
2021-12-19 09:19:09 -06:00
committed by GitHub
parent 83ced2339c
commit 09234d21f0
4 changed files with 1 additions and 51 deletions

View File

@@ -1,36 +0,0 @@
<?php
/**
* Theme admin.
*/
namespace App;
use WP_Customize_Manager;
use function Roots\bundle;
/**
* Register the `.brand` selector to the blogname.
*
* @param \WP_Customize_Manager $wp_customize
* @return void
*/
add_action('customize_register', function (WP_Customize_Manager $wp_customize) {
$wp_customize->get_setting('blogname')->transport = 'postMessage';
$wp_customize->selective_refresh->add_partial('blogname', [
'selector' => '.brand',
'render_callback' => function () {
bloginfo('name');
}
]);
});
/**
* Register the customizer assets.
*
* @return void
*/
add_action('customize_preview_init', function () {
bundle('customizer')->enqueueJs(true, ['customize-preview']);
});