Only Display Featured Events Filter Query Elementor Post Widget
-
I created custom skin for the event calendar pro events with help of ele custom skin pro and displaying in Elementor Post Widget.
Question is I want to filter our only events that has Featured Event Option checked.To Display according event start date using custom Custom Query ID
add_action( ‘elementor/query/my_custom_filter’, function( $query ) {
//$query->set( ‘post_type’, ‘event’);
$query->set( ‘orderby’, ‘meta_value’ );
$query->set( ‘meta_key’, ‘_EventStartDate’ );
$query->set( ‘order’, ‘ASC’ );});
Now I Need Only events that are featured event.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Only Display Featured Events Filter Query Elementor Post Widget’ is closed to new replies.