Home › Forums › Backend Issues (wp-admin) › Real cron job can't see fields from options page › Reply To: Real cron job can't see fields from options page
Hi, Post is dead, but it is on the first page of google when you type “acf cron get_field options page”, so for future seekers, there is a solution.
I had similar problem. I can’t get fields values by get_field in function fired by cron. So, after research in acf and polylang code I used:
$locale = 'en_GB'; // You can use get locale function, for eg from polylang: pll_get_post_language( $post_id, 'locale' )
get_field($name, 'options_'.$locale);
instead of
get_field($name, 'options');
And it works.
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.