• Trying to figure how to query post by the Modified Author.

    I’ve tried this and it just queries the author and orders it by the modified date.

    // The Query
    $args = array(
    	'post_type' => 'shows',
    	'orderby'=> 'modified',
      	'order' => 'ASC',
    	'author' => '27'
     );
    
    $the_query = new WP_Query( $args );

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Query Posts by Modified Author’ is closed to new replies.