Home › Forums › Front-end Issues › Displaying and linking to the post chosen within Flexible Content layout field › Reply To: Displaying and linking to the post chosen within Flexible Content layout field
<?php if(get_row_layout() == "two_eq_columns"): ?>
<div class="two-eq-cols">
<?php
$TheID = get_sub_field('left_50-50_column');
$TheID = $TheID->ID;
$page_data = get_page($TheID);
?>
<a href="<?php echo $post_object; ?>">
<?php the_sub_field(‘two_eq_columns’); ?><h2>
<?php echo $page_data->post_title; ?></h2></a>
<?php echo $page_data->post_excerpt; ?>
</div>
<div class="two-eq-cols">
<?php
$TheID = get_sub_field('right_50-50_column');
$TheID = $TheID->ID;
$page_data = get_page($TheID);
?>
<a href="<?php echo $post_object; ?>">
<?php the_sub_field(‘two_eq_columns’); ?><h2>
<?php echo $page_data->post_title; ?></h2></a>
<?php echo $page_data->post_excerpt; ?></div>
<div class="clearit"></div>
<?php endif; ?>
Thanks Jonathan. Hadn’t spotted that.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.