我正在为我的WordPress网站的elementor中创建一个小部件。我选择了“ TEXT”控件来编写小部件的标题。我还希望用户在文本框中添加''标签,以便样式在视图中显示。但这是可见的。我该如何解决?
这是我的代码:
'header_title_control',
[
'label' => __( 'Header Title', 'progoti' ),
'type' => Controls_Manager::TEXT,
'placeholder' => __( 'Enter the title here', 'progoti' ),
]
);