start_controls_section( 'section_content', [ 'label' => __( 'Content', 'hello-world' ), ] ); $this->add_control( 'title', [ 'label' => __( 'Title', 'hello-world' ), 'type' => Controls_Manager::TEXT, ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style', [ 'label' => __( 'Style', 'hello-world' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'text_transform', [ 'label' => __( 'Text Transform', 'hello-world' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => __( 'None', 'hello-world' ), 'uppercase' => __( 'UPPERCASE', 'hello-world' ), 'lowercase' => __( 'lowercase', 'hello-world' ), 'capitalize' => __( 'Capitalize', 'hello-world' ), ], 'selectors' => [ '{{WRAPPER}} .title' => 'text-transform: {{VALUE}};', ], ] ); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings(); echo '