Home › Forums › Front-end Issues › Sorting / Querying from One Custom Post › Reply To: Sorting / Querying from One Custom Post
Hi @okozarsky
I think your issue is that you don’t know what the page link field does..
It will ONLY return the link (url) to the selected post.
What you really want is a post object field..
Then to get the link you’d do
$post_object = get_field('thepostobjectfield');
$page_link = get_permalink(post_object->ID);
$page_title = get_the_title($post_object->ID);
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.