[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Customize API: WP_Sidebar_Block_Editor_Control class. 4 * 5 * @package WordPress 6 * @subpackage Customize 7 * @since 5.8.0 8 */ 9 10 /** 11 * Core class used to implement the widgets block editor control in the 12 * customizer. 13 * 14 * @since 5.8.0 15 * 16 * @see WP_Customize_Control 17 */ 18 class WP_Sidebar_Block_Editor_Control extends WP_Customize_Control { 19 /** 20 * The control type. 21 * 22 * @since 5.8.0 23 * 24 * @var string 25 */ 26 public $type = 'sidebar_block_editor'; 27 28 /** 29 * Render the widgets block editor container. 30 * 31 * @since 5.8.0 32 */ 33 public function render_content() { 34 // Render an empty control. The JavaScript in 35 // @wordpress/customize-widgets will do the rest. 36 } 37 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Nov 21 08:20:01 2024 | Cross-referenced by PHPXref |