Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ckoerner
Created August 7, 2014 14:13
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 ckoerner/817f3383e7c8322e2a92 to your computer and use it in GitHub Desktop.
Save ckoerner/817f3383e7c8322e2a92 to your computer and use it in GitHub Desktop.
ACF Example 2
<div class="grid_6 spotlight project" style="background-color:<?php the_field('background_color'); ?>">
<a href="<?php the_permalink(); ?>">
<img src="<?php the_field( 'homepage_slider_image' ); ?>">
</a>
<h4>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h4>
<?php the_field( 'description'); ?>
<p>
<a class="btn blue" href="<?php the_permalink(); ?>" style="background-color:<?php the_field('button_color'); ?>">
Read More &rarr;
</a>
</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment