Home › Forums › Backend Issues (wp-admin) › Shared Data › Reply To: Shared Data
As john said you can use an options page and call the field using;
<?php the_field('field_name', 'option'); ?>
Or if you want to put the fields on one of the pages for usabilities sake (although using an options page would be best practice), you can put the page ID of the page with the fields on as a parameter on the other page like so;
<?php the_field('field_name', 67); ?> <!-- replace 67 with the page ID you want to call the field from -->
Hope this helps, thanks.
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.