WP_Customize_Panel::get_content() – Get the panel’s content template for insertion into the Customizer pane.

You appear to be a bot. Output may be restricted

Description

Get the panel's content template for insertion into the Customizer pane.

Usage

$string = WP_Customize_Panel::get_content();

Parameters

Returns

string Content for the panel.

Source

File name: wordpress/wp-includes/class-wp-customize-panel.php
Lines:

1 to 5 of 5
  final public function get_content() {
    ob_start();
    $this->WP_Customize_Panel::maybe_render();
    return trim( ob_get_clean() );
  }
 

 View on GitHub View on Trac