I run the query:
SELECT post_author
FROM `wp_posts`
and see that many posts have as author the value 1.
I then execute in my search.php the following:
$args = array(
'author' => 1,
);
$the_query = new WP_Query( $args );
and get no results! Whats wrong?
