'post',
'post_status' => 'publish',
'posts_per_page' => -1,
);
$posts = new WP_Query( $args );
if ( $posts->have_posts() ) :
echo '';
while ( $posts->have_posts() ) :
$posts->the_post();
echo '- ' . get_the_title() . '' . esc_attr( get_the_time( 'F j, Y' ) ) . '
';
endwhile;
echo '
';
wp_reset_postdata();
else :
echo '' . esc_html__( 'Sorry, no posts matched your criteria.', 'arke' ) . '
';
endif;
?>