teste

<ul>
<?php
$popularpost = new WP_Query($args);
//VERIFICA SE O LOOP ESTÁ VAZIO
if(!$popularpost->have_posts()) : 
	echo 'Nenhum artigo lido hoje';
endif;

while ( $popularpost->have_posts() ) : $popularpost->the_post(); ?>
<li>
	<p>Última alteração: <?php the_modified_time(); ?></p>
	<a href="<?php echo get_permalink(); ?>" title="<?php the_title_attribute(); ?>">
		<h3><?php the_title(); ?></h3>
	</a>
</li>
<?php endwhile; wp_reset_query();?>
</ul>