Everything You Need to Know About My Blog in One Place
<ul>
<?php
$args = array(
'post_type' => 'post', // Change to your custom post type if you have one
'posts_per_page' => -1,
'order' => 'DESC',
);
$articles_query = new WP_Query($args);
if ($articles_query->have_posts()) :
while ($articles_query->have_posts()) : $articles_query->the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php
endwhile;
else:
?>
<li>No articles found.</li>
<?php
endif;
wp_reset_postdata();
?>
</ul>