Wordpress - WordPress Query and Database
What will be the result of this code snippet?
$args = array('author' => 3, 'posts_per_page' => 2);
$query = new WP_Query($args);
while ($query->have_posts()) {
$query->the_post();
echo get_the_title() . ', ';
}