Home › Forums › Feature Requests › Adjustable Textdomains and Textdomains in PHP Export › Reply To: Adjustable Textdomains and Textdomains in PHP Export
For anyone coming across this in 2021 the solution is to set a textdomain via code like so:
add_action('acf/init', 'acf_l10n_textdomain_setting');
function acf_l10n_textdomain_setting()
{
acf_update_setting('l10n_textdomain', 'yourtextdomain');
}
Once this setting is defined it will automatically wrap them on export.
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.