• Hello, is there a shortcode to get all messages regardless of their status (public, draft, pending review …) ?

Viewing 1 replies (of 1 total)
  • Thread Starter nexusfred

    (@nexusfred)

    I found a solution in PHP

    $args = array(
                  'post_type' => 'Post-Type',
                  'orderby'   => 'title',
                  'order'     => 'ASC',
                  'post_status' => 'any',
                );
    			
    the_a_z_listing( $args);

Viewing 1 replies (of 1 total)
  • The topic ‘Get post in draft state’ is closed to new replies.