Skip to content

Instantly share code, notes, and snippets.

View nodex4's full-sized avatar
☠️
programming

Eugene nodex4

☠️
programming
View GitHub Profile
@MarieComet
MarieComet / elementor-posts-widget-multiple-post-types.php
Last active October 28, 2024 19:12
Allow to select multiple post types as query source in Elementor Posts widget
<?php
function elementor_posts_widget_multiple_post_types( $element, $args ) {
$element->update_control(
'posts_post_type', // control ID
[
'type' => Elementor\Controls_Manager::SELECT2,
'multiple' => true,
]
);
}