ACF: Querying relationship fields with Author
The users doesn’t have permalinks nor titles. They have author links and display names. Changed the code: <?php while ( have_posts() ) : the_post(); ?> <h2>Resturants</h2> <?php $resturants = get_users(array( // Changed from get_posts ‘fields’ => ‘all_with_meta’, // All with meta to get also display_name ‘meta_query’ => array( array( ‘key’ => ‘resturant’, // name of … Read more