1

我正在尝试找到一个钩子,可以让我将自己的代码添加到现有的 elementor 小部件中。例如,他们有“帖子小部件”,可让您根据您设置的条件/类别显示帖子列表。

我想将我自己的代码添加到这个“块”中,但找不到任何特定的钩子来连接到现有的小部件(特别是帖子小部件)

任何帮助将非常感激。有这个钩子吗?如果不是,我的下一个最佳选择是什么?

谢谢!

4

1 回答 1

1

这取决于您想要实现的目标,但通常有钩子。

我不确定帖子小部件,但我可以向您展示一些一般性的示例。

如果您想向小部件添加控件,请使用此功能(您可以在其文档https://developers.elementor.com/add-controls-to-widgets/中找到有关名称和内容的其他信息)

add_action( 'elementor/element/heading/section_title/before_section_end', function( $element, $args ) {
    $element->add_control( 'title_color',
        [
            'label' => 'Color' ,
            'type' => \Elementor\Controls_Manager::SELECT,
            'default' => 'red',
            'options' => [
                'red' => 'Red',
                'blue' => 'Blue',
            ],
            'section' => 'section_title',
            'tab' => 'content',
        ]
    );
}, 10, 2);

示例中的小部件是标题。您可以通过检查编辑器或插件目录中的块来查找注册名称

如果要更改小部件的呈现内容,可以使用它

add_action( 'elementor/widget/render_content', function( $content, $widget ){ // $content (string) = the rendered content of the widget; widget = the data object 
    if ($widget->get_name() === 'heading') { // your targeted widget
        $settings = $widget->get_settings(); // every that is stored in this method. Titles, captions, margins and so on. Usually this is all you need
        // eg if you simply want to wrap your widgets content you can do something like this
        $content .= '<div class="i-am-a-wrapper">'.$content.'</div>';
    }
    return $content;
}, 10, 2 );

我希望这有帮助 :)

于 2020-06-05T12:53:24.553 回答