Now I have a problem situation with Advanced Custom Field plugin in Wordpress.
Every posts with different information in Advanced Custom Field (ACF), for examples:
-post #1: los angeles
-post #2: texas
-post #3: california
Now, I want to create a custom page named 'Show Locations' template for showing that relevant information when use click on a certain link. How can I track a link that user click on and show relevant data for them.
I've tried:
<?php get_field('field_name', $post->ID); ?>
But it didn't work.