Support

Account

Home Forums Backend Issues (wp-admin) update_field for taxonomy field type Reply To: update_field for taxonomy field type

  • Hi @fred-malinge

    I’ve just tested wp_set_object_terms() function with the acf/save_post hook, and it’s working correctly. But please keep in mind that I modified the code so it’s working on my installation.

    Could you please make sure that the variables have the correct values? Could you please debug it like this:

    echo "\noeuvre\n:";
    var_dump( $oeuvre );
    echo "\nterm_id\n:";
    var_dump( $term_id );

    Also, could you please add the variable manually like this:

    $term_taxonomy_ids = wp_set_object_terms( 99, 123, 'statut_pret');

    Where “99” is the post ID and “123” is the term ID.

    Thanks 🙂