Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JoelEadeDesign/d694b5f29a5f1dd991c92379027887dd to your computer and use it in GitHub Desktop.
Save JoelEadeDesign/d694b5f29a5f1dd991c92379027887dd to your computer and use it in GitHub Desktop.
<?php
/*
* Allow Jet Smart Filters to show published posts
*/
add_action( 'elementor/query/jet-smart-filters', function( $query ) {
// Add `jet-smart-filters` to `Query ID` of `Post` widget
$query->set( 'post_status', [ 'publish' ] );
} );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment