Home › Forums › General Issues › Add number to Post Object values › Reply To: Add number to Post Object values
There isn’t any way to add a value to the relationship field. Using just the relationship field you could only do this based on the count of how many fields are shown and show the first 3 differently
$count = 0;
foreach ($featured_posts as $post) {
$count++;
if ($count <=3) {
// one of the first 3 posts
} else {
// not one of the first 3 posts
}
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.