WP_Customize_Section::get_content()
Get the section's content for insertion into the Customizer pane.
Метод класса: WP_Customize_Section{}
Хуков нет.
Возвращает
Строку
. Contents of the section.
Использование
$WP_Customize_Section = new WP_Customize_Section(); $WP_Customize_Section->get_content();
Список изменений
С версии 4.1.0 | Введена. |
Код WP_Customize_Section::get_content() WP Customize Section::get content WP 6.7.1
final public function get_content() { ob_start(); $this->maybe_render(); return trim( ob_get_clean() ); }