GC_Customize_Section::get_content()

最后更新于:2021-11-27 07:38:04

GC_Customize_Section::get_content()

Get the section’s content for insertion into the Customizer pane.

响应

(string) Contents of the section.

源文件

文件: gc-includes/class-gc-customize-section.php

	final public function get_content() {
		ob_start();
		$this->maybe_render();
		return trim( ob_get_clean() );
	}