最终目标是在 Wordpress 中为 Elementor 提供一个小部件,该小部件可以在选项卡内创建多个按钮。所以我想要一个中继器内部的中继器。
我还没有所有的功能或样式,只是列出页面上每个输入的非常基本的设置。我的代码不起作用。该插件正确显示,但是所有元素或控件都消失了。
这是代码:
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Elementor iatabs widget.
*
* Elementor widget that displays vertical or horizontal iatabs with different
* pieces of content.
*
* @since 1.0.0
*/
class Widget_AltTabs extends Widget_Base {
/**
* Get widget name.
*
* Retrieve iatabs widget name.
*
* @since 1.0.0
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'alttabs';
}
/**
* Get widget title.
*
* Retrieve tabs widget title.
*
* @since 1.0.0
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'AltTabs', 'elementor' );
}
/**
* Get widget icon.
*
* Retrieve tabs widget icon.
*
* @since 1.0.0
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-tabs';
}
protected function _register_controls() {
$this->start_controls_section(
'content_section',
[
'label' => __( 'Content', 'elementor' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'list',
[
'label' => __( 'Repeater List', 'elementor' ),
'type' => Controls_Manager::REPEATER,
'fields' => [
[
'name' => 'list_title',
'label' => __( 'Title', 'elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'List Title' , 'elementor' ),
'label_block' => true,
],
[
'name' => 'list_content',
'label' => __( 'Content', 'elementor' ),
'type' => Controls_Manager::WYSIWYG,
'default' => __( 'List Content' , 'elementor' ),
'show_label' => false,
],
[
'name' => 'list_buttons',
'label' => __( 'List Buttons', 'elementor' ),
'type' => Controls_Manager::REPEATER,
'fields' => [
[
'name' => 'button_text',
'label' => __( 'Button Text', 'elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Click' , 'elementor' ),
'label_block' => true,
],
],
'default' => [
[
'button_text' => __( 'Button #1', 'elementor' ),
],
[
'button_text' => __( 'Button #2', 'elementor' ),
],
],
],
],
'default' => [
[
'list_title' => __( 'Title #1', 'elementor' ),
'list_content' => __( 'Item content. Click the edit button to change this text.', 'elementor' ),
],
[
'list_title' => __( 'Title #2', 'elementor' ),
'list_content' => __( 'Item content. Click the edit button to change this text.', 'elementor' ),
],
],
'title_field' => '{{{ list_title }}}',
]
);
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
if ( $list ) {
echo '<dl>';
foreach ( $settings['list'] as $item ) {
echo '<dt class="repeater-' . $item['_id'] . '">' . $item['list_title'] . '</dt>';
echo '<dd>' . $item['list_content'] . '</dd>';
foreach ($item['list_buttons'] as $button) {
echo $button['button_text'];
}
}
echo '</dl>';
}
}
/**
* Render tabs widget output in the editor.
*
* Written as a Backbone JavaScript template and used to generate the live preview.
*
* @since 1.0.0
* @access protected
*/
protected function _content_template() { ?>
<# if ( settings.list ) { #>
<dl>
<# _.each( settings.list, function( item ) { #>
<dt class="repeater-{{ item._id }}"> {{ item.list_title }} </dt>
<dd> {{ item.list_content }} </dd>
<dd> {{ item.list_buttons[0].button_text }} </dd>
<# if ( item.list_buttons ) { #>
<dl>
<# _.each( item.list_buttons, function( i ) { #>
<dt class="repeater-{{ i._id }}"> </dt>
<dd> {{ i.button_text }} </dd>
<# }); #>
</dl>
<# } #>
<# }); #>
</dl>
<# } #>
<?php
}
}
Plugin::instance()->widgets_manager->register_widget_type( new Widget_AltTabs ); ?>
这是我收到的错误消息的示例:
未捕获的类型错误:无法读取对象未定义的属性“每个”。(editor.min.js?ver=2.0.15:2) 在 Function.each (load-scripts.php?c=0&load[]=underscore,shortcode,utils,jquery-core,jquery-migrate,backbone,wp- util,wp-backbone,媒体模型,moxiejs,plupload,wp-plupload,jqu&load[]=ery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable&ver=4.9:10)在 n.getStyleControls (editor.min.js?ver=2.0.15:2) 在 editor.min.js?ver=2.0.15:2 在 Function.m.each.m.forEach (load-scripts.php? c=0&load[]=下划线,简码,utils,jquery-core,jquery-migrate,backbone,wp-util,wp-backbone,media-models,moxiejs,plupload,wp-plupload,jqu&load[]=ery-ui-核心,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable&ver=4.9:5) 在 e.Collection.each (load-scripts.php?c=0&load[]=underscore,shortcode,utils, jquery-core,jquery-migrate,backbone,wp-util,wp-backbone,media-models,moxiejs,plupload,wp-plupload,jqu&load[]=ery-ui-core,jquery-ui-widget,jquery-ui- mouse,jquery-ui-sortable&ver=4.9:18) 在对象。(editor.min.js?ver=2.0.15:2) 在 Function.each (load-scripts.php?c=0&load[]=underscore,shortcode,utils,jquery-core,jquery-migrate,backbone,wp- util,wp-backbone,媒体模型,moxiejs,plupload,wp-plupload,jqu&load[]=ery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable&ver=4.9:10)在 n.getStyleControls (editor.min.js?ver=2.0.15:2) 在 n.renderStyles (editor.min.js?ver=2.0.15:2)<
我对编写 Elementor 小部件/插件还很陌生,所以我被难住了。我将不胜感激任何帮助。谢谢!