Home › Forums › Add-ons › Options Page › Can\'t translate options pages › Reply To: Can\'t translate options pages
Hi @tuskotrush
Because you set the post_id
, ACF tries to get the value from that exact ID in the wp_options table. As a workaround, you can use the ICL_LANGUAGE_CODE
constant in the post_id
option like this:
'post_id' => 'cpt_projects_'.ICL_LANGUAGE_CODE,
This will add extra suffix so the options ID will be like “cpt_projects_en” or “cpt_projects_fr”.
To get the value from the options page, don’t forget to add the ICL_LANGUAGE_CODE
constant like this:
get_field('custom_field_name', 'cpt_projects_'.ICL_LANGUAGE_CODE);
I hope this helps 🙂
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.