-
[insert_php]
$args = array(‘post_type’=>’post’);
- ‘. the_post_thumbnail(50,50) .'[‘.get_the_time(‘Y.n.j’) .’] ‘. get_the_title() .’
$q = new WP_Query( $args );
if ( $q->have_posts() ) : while ( $q->have_posts() ) : $q->the_post();
echo ‘
‘;
endwhile;
endif;
wp_reset_postdata();
[/insert_php]