the_sub_field( 'clinic-column_content' );
apply_filters( 'the_content', get_sub_field( 'clinic-column_content' ) );
<?php /*
Template Name: My Page
*/
<?php get_header(); ?>
<div>
<!-- The Loop -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<p>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>">
<?php the_title(); ?></a>,
</p>
<?php endwhile;
the_posts_navigation();
else: ?>
<p><?php _e('No posts by this author.'); ?></p>
<?php endif; ?>
<!-- End Loop -->
</div>
<?php get_footer(); ?>
if ( ! function_exists( 'astra_site_branding_markup' ) )