Support

Account

Home Forums ACF PRO Create new field group Reply To: Create new field group

  • You are adding this action, but I do not see the function that is supposed to run

    
    add_action( 'acf/init', 'register_custom_acf_fields' );
    

    Adding an action requires a corresponding function

    
    function register_custom_acf_fields() {
      // your code to add field group here
    }