Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Help needed with ACF on home page

Featured Replies

I'm trying to insert an ACF relationship field on the home page between two post loops. I can get the posts to display or the relationship field, but not both.

 

Any help appreciated!

<?php query_posts('showposts=1'); ?>


<?php while ( have_posts() ) : the_post(); ?>
....


<?php endwhile; // end of the loop. ?> 




<?php 


$posts = get_field('case_study_link');


if( $posts ): ?>


<?php foreach( $posts as $p ):  ?>


  <?php echo get_the_title( $p->ID ); ?>
      
  
  <img src="<?php the_field('main_image', $p->ID); ?>" />
  
  
  <?php endforeach; ?>
  
<?php endif; ?>




<?php query_posts('showposts=1&offset=1'); ?>


<?php while ( have_posts() ) : the_post(); ?>


...


<?php endwhile; // end of the loop. ?> 

 

You should reset the post data on your loops. Although i'm not sure why grabbing the posts and then just using a foreach would be affected by it... but it probably is.

<?php
// The Query
query_posts( $args );

// The Loop
while ( have_posts() ) : the_post();
    echo '<li>';
    the_title();
    echo '</li>';
endwhile;

// Reset Query
wp_reset_query();
?>

Edited by EpicWebs

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.