Skip to content

Instantly share code, notes, and snippets.

@NateJLewis
Created July 22, 2016 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NateJLewis/b80c7d550ad48d90a4268e2a368b6607 to your computer and use it in GitHub Desktop.
Save NateJLewis/b80c7d550ad48d90a4268e2a368b6607 to your computer and use it in GitHub Desktop.
<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