update comment author id with wp_update_comment
-
I cannot change the user_ID with wp_update_comment. This example is working, the content is updated but not the user_ID. I tried also user_id.
Please helpfunction update_user_id( $comment_ID) { $commentarr = array(); $commentarr['comment_ID'] = $comment_ID; $commentarr['comment_content'] = 'Sample content'; $commentarr['user_ID'] = 1; wp_update_comment( $commentarr ); } add_action( 'comment_post', 'update_user_id');
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘update comment author id with wp_update_comment’ is closed to new replies.