Support

Account

Home Forums Add-ons Repeater Field Display specific field from all posts

Unread

Display specific field from all posts

  • Hello,
    I must display a specific custom field for all articles, I have tried this loop, and I have just partial results (only the newest added articles appear in this loop, the oldest are not).

    if ( have_posts() ) : while ( have_posts() ) : the_post();
    $price= get_field (“price”);
    echo the_title().$price.”<br>”;
    endwhile;
    endif;

    Any idea how to loop this, to show all articles that have that specific field ?
    Thanks

Viewing 1 post (of 1 total)

The topic ‘Display specific field from all posts’ is closed to new replies.