/**
* Get the control's content for insertion into the Customizer pane.
*
* @since 4.1.0
*
* @return string Contents of the control.
*/
final public function get_content() { ob_start();
$this->
maybe_render();
return trim( ob_get_clean() );
} /**
* Check capabilities and render the control.
*
* @since 3.4.0
* @uses WP_Customize_Control::render()
*/
final public function maybe_render() { if ( !
$this->
check_capabilities() ) {