GC_Customize_Panel::get_content()
最后更新于:2021-11-27 06:56:56
GC_Customize_Panel::get_content()Get the panel’s content template for insertion into the Customizer pane.
响应
(string) Content for the panel.
源文件
文件: gc-includes/class-gc-customize-panel.php
final public function get_content() {
ob_start();
$this->maybe_render();
return trim( ob_get_clean() );
}