acf/update_field_group

acf/update_field_group

Hook Type: action

See hook in core

Displaying hooks found in version: advanced-custom-fields.6.3.3

do_action('acf/update_field_group') is found 2 times:

  • /includes/admin/post-types/admin-field-group.php line 558
    				// Update the field in the database.
    				acf_update_field( $field );
    
    				// Fire `acf/update_field_group` action hook so JSON can sync if necessary.
    				do_action( 'acf/update_field_group', $old_field_group );
    				do_action( 'acf/update_field_group', $new_field_group );
    
    				// Output HTML.
    				$link = '<a href="' . admin_url( 'post.php?post=' . $new_field_group&#91;'ID'&#93; . '&action=edit' ) . '" target="_blank">' . esc_html( $new_field_group['title'] ) . '</a>';
    
    				echo '' .
    
  • /includes/admin/post-types/admin-field-group.php line 559
    				acf_update_field( $field );
    
    				// Fire `acf/update_field_group` action hook so JSON can sync if necessary.
    				do_action( 'acf/update_field_group', $old_field_group );
    				do_action( 'acf/update_field_group', $new_field_group );
    
    				// Output HTML.
    				$link = '<a href="' . admin_url( 'post.php?post=' . $new_field_group&#91;'ID'&#93; . '&action=edit' ) . '" target="_blank">' . esc_html( $new_field_group['title'] ) . '</a>';
    
    				echo '' .
    					'<p><strong>' . esc_html__( 'Move Complete.', 'acf' ) . '</strong></p>' .