brad-seneca
3/26/2020 - 12:44 PM

The Loop

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
	<h1><?php the_title(); ?></h1>
	<?php the_content(); ?>
<?php endwhile; else: ?>
	<p><?php _e('Sorry, no content available!', 'textdomain'); ?></p>
<?php endif; ?>