id = $id; } /** * Render content for the control. * * @since Hestia 1.1.42 */ public function render_content() { if ( ! empty( $this->label ) ) { echo '' . esc_html( $this->label ) . ''; } if ( ! empty( $this->button_text ) ) { $params = ' href="#" '; if ( ! empty( $this->link ) ) { $params = ' href="' . esc_url( $this->link ) . '" target="_blank" '; } echo ''; if ( ! empty( $this->button_class ) ) { echo ''; } echo esc_html( $this->button_text ); echo ''; } } }