label ) { printf( '%sPro', esc_html( $this->label ) ); } if ( $this->description ) { printf( '
%s
', wp_kses_post( $this->description ) ); } if ( $this->url && $this->cta ) { printf( '', esc_url( $this->url ), esc_html( $this->cta ) ); } } } /** * Displays custom message with a call to action link. */ class Maker_Message_Control extends WP_Customize_Control { /** * Render the content. */ public function render_content() { if ( $this->label ) { printf( '%s', esc_html( $this->label ) ); } if ( $this->description ) { printf( '%s
', wp_kses_post( $this->description ) ); } } }