• While using the ACF plugin ( with the repeater addon) I am trying to get the custom fields to show up on the blog post with the custom post type, and nothing is showing up but the title and whatever i put into the visual editor box…

    Here is my code

    <div id="content" role="main">
    		<?php query_posts( 'post_type=recipes'); ?>
    		<?php if(have_posts()) while(have_posts()) : the_post();?>
    		<?php the_post_thumbnail();?>
    		<?php the_title();?>
    		<?php the_field('total_time');?>
    		<?php the_category();?>
    		<?php endwhile;?>
    		</div><!-- #content -->

    http://wordpress.org/extend/plugins/advanced-custom-fields/

  • The topic ‘unable to get custom fields to show up’ is closed to new replies.