Skip to content

Instantly share code, notes, and snippets.

@dexit
Forked from LeMiira/meta_query_elementor.php
Created January 12, 2024 15:58
Show Gist options
  • Save dexit/9f58119fdd3dc3fa10f40d8d0a5346f3 to your computer and use it in GitHub Desktop.
Save dexit/9f58119fdd3dc3fa10f40d8d0a5346f3 to your computer and use it in GitHub Desktop.
Custom meta query elementor
add_action( 'elementor_pro/posts/query/relatedPostsDynamic', function( $query ) {
$meta_query[] = [
'key' => 'mec_end_date',
'value' => date('Y-m-d'),
'compare' => '>=',
];
$tax_query[] =[
'taxonomy' => 'language',
'terms' => 22566,
'field' => 'term_taxonomy_id',
'operator' => 'IN'
];
$query->set('tax_query', $tax_query);
$query->set('meta_query', $meta_query);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment