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.11

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

  • /includes/admin/post-types/admin-field-group.php line 558
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    // 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
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    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>' .