Viewing 3 replies - 1 through 3 (of 3 total)
  • I am interested too, I fails to display my data … Did you finally succeed?

    Thread Starter Tommy White

    (@twdesigns)

    I don’t even remember posting the above. But here is my working code located in my template file single.php.

    <?php $values = get_field('my_features');
    	if($values)
    		{
    		echo '
    <ul>';
    		foreach($values as $value)
    		{
    		echo '<li class="my_features">' . $value . '';
    		}
    		echo '</ul>
    ';
    		}
    // always good to see exactly what you are working with
    // var_dump($values);
    ?>
    Thread Starter Tommy White

    (@twdesigns)

    corrected above post.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Advanced Custom Fields – Taxonomy Field add-on] Need Template output example pls’ is closed to new replies.