Home › Forums › General Issues › Advanced customs fields in functions.php › Reply To: Advanced customs fields in functions.php
If you have ACF working when installed in the theme then more than likely you are trying to create your field group before ACF has loaded. In other words
if( function_exists('acf_add_local_field_group') ):
is false.
Put the code that creates field groups into an init action
add_action('init', 'my_function_to_add_field_groups');
function my_function_to_add_field_groups() {
// add field groups here
}
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.