GC_Customize_Control::get_content()
最后更新于:2021-11-26 23:28:06
GC_Customize_Control::get_content()Get the control’s content for insertion into the Customizer pane.
响应
(string) Contents of the control.
源文件
文件: gc-includes/class-gc-customize-control.php
final public function get_content() {
ob_start();
$this->maybe_render();
return trim( ob_get_clean() );
}