rmmoul
8/29/2013 - 9:54 PM

get custom field

get custom field

<?php get_field('center_image'); ?>

<!-- example -->
<?php if(get_field('center_image') != ''){ ?>
  <img src="<?php echo get_field('center_image'); ?>" />
<? } // if image ?>
  <?php if(get_field('home_center_image') != ''){ ?>
		<?php $thumb = wp_get_attachment_image_src(get_field('home_center_image'), 'home_page_thumbs'); ?>
		<img src="<?php echo $thumb[0]; ?>" />
	<? } // if image ?>