• Resolved mielenzio

    (@mielenzio)


    Is it possible to show posts of specific Post_status (draft, pending review and so on? Not onl the published ones?

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Shabti Kaplan

    (@shabti)

    Hello, I am working on adding this option. For the time being, though, you can use this in your functions.php file

    Set ‘multiple_statuses’ as the query id

    add_action( 'elementor/query/multiple_statuses', function( $query ) {
    	// Here we set the query to fetch posts with 
    	// post status 'future' and 'draft'.
    	// Refer to WP_Query documentation in WP codex for values list.
    	$query->set( 'post_status', [ 'future', 'draft'] ); //follow this format 
    } );
Viewing 1 replies (of 1 total)

The topic ‘Query by Status’ is closed to new replies.