Home › Forums › Add-ons › Repeater Field › Repeater Field not playing well using update_field() › Reply To: Repeater Field not playing well using update_field()
Hi @gregattack
The functions.php file is run BEFORE the init action. To hook into the init action, please read up on WP actions, and write a function and attach it to the init
action. Something like this would work:
function my_init() {
// do something
}
add_action('init', 'my_init');
Thanks
E
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.