experiments->is_feature_active('e_optimized_markup'); } protected function register_controls() { $this->start_controls_section( 'section_content', [ 'label' => esc_html__('Content', 'uicore-elements'), ] ); $this->add_control( 'meta_list', [ 'label' => esc_html__('Meta Data', 'uicore-elements'), 'type' => \Elementor\Controls_Manager::REPEATER, 'fields' => $this->get_meta_content_controls(), 'default' => [ [ 'type' => 'author' ], ], 'title_field' => '{{{ type }}}', 'prevent_empty' => false, 'separator' => 'before' ] ); $this->add_responsive_control( 'content_align', [ 'label' => esc_html__('Content Alignment', 'uicore-elements'), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__('Left', 'uicore-elements'), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__('Center', 'uicore-elements'), 'icon' => 'eicon-text-align-center', ], ], 'selectors' => [ '{{WRAPPER}}' => 'text-align: {{VALUE}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_meta_style', [ 'label' => esc_html__('Style', 'uicore-elements'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->get_meta_style_controls(); $this->end_controls_section(); } protected function display_dummy_text($meta_list) { echo '
'; } protected function render() { $meta_list = $this->get_settings_for_display('meta_list'); if (!isset($meta_list[0]) || $meta_list[0]['type'] == '') { return; } if ($this->is_edit_mode()) { $this->display_dummy_text($meta_list); return; } echo ''; } protected function content_template() {} } \Elementor\Plugin::instance()->widgets_manager->register(new PostMeta());