Created
July 22, 2016 16:47
-
-
Save NateJLewis/b80c7d550ad48d90a4268e2a368b6607 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section id="home-sub-hero" class="container-fluid"> | |
<article class="row center-xs around-xs"> | |
<div class="col-xs-12 col-md-8"><?php | |
if( get_field( 'subhero_heading', $post_id ) ) : | |
?><h3 class="subhero_heading"><?php | |
_e( the_field( 'subhero_heading', $post_id ), '_tvk' ); | |
?></h3><?php | |
endif; | |
if( get_field( 'subhero_content', $post_id ) ) : | |
?><div class="subhero_content"><?php | |
esc_html_e( the_field( 'subhero_content', $post_id ), '_tvk' ); | |
?></div><?php | |
endif; | |
?></div> | |
</article> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment