ruạṛ
<div class="row"> <!-- <div class="col-sm-8 col-sm-offset-2">--> <div class="col-sm-12"> <div class="columns-wrapper <?php print get_field('text_layout'); ?>"> <?php if (has_post_thumbnail( $post->ID ) ): ?> <div class="col-sm-5 col-md-4 "> <?php $imgurl =false; $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); if(!empty($image[0])) $imgurl = $image[0]; if( $imgurl ): ?> <div class="featured-image"> <img src="<?php echo $imgurl; ?>" alt="" /> </div> <?php endif; ?> </div> <div class="col-sm-7 col-md-8"> <?php endif; ?> <?php the_content(); ?> <?php $location = get_field('contact_us_map'); if( !empty($location) ): ?> <div class="acf-map"> <div class="marker" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>"></div> </div> <?php endif; ?> <?php wp_link_pages(array('before' => '<nav class="pagination">', 'after' => '</nav>')); ?> <?php if (has_post_thumbnail( $post->ID ) ): // closes the col-sm-7 col-md-8 div above?> </div> <?php endif; ?> </div> <?php if( get_field('show_contact_footer') ): ?> <div class="contact-footer"> <hr> <h5>Contact:</h5> <strong><?php print get_field('contact_name'); ?></strong><br> <?php if(get_field('contact_position_role')): ?><em><?php print get_field('contact_position_role'); ?></em><br><?php endif; ?> <?php if(get_field('contact_phone')): ?><span>Phone:</span> <?php print get_field('contact_phone'); ?><br><?php endif; ?> <?php if(get_field('contact_fax')): ?><span>Phone:</span> <?php print get_field('contact_fax'); ?><br><?php endif; ?> <?php if(get_field('contact_email')): ?><span>email:</span> <a href="mailto:<?php print get_field('contact_email'); ?>"><?php print get_field('contact_email'); ?></a><?php endif; ?> </div> <?php endif; ?> </div> </div>
cải xoăn