Ajax & WordPress on Front End - Database not updating

前端 未结 4 1795
离开以前
离开以前 2021-01-14 17:59

So I\'m working on a WordPress website. I\'m having a bit of a difficult time getting the user input to update the database.

JS:

var ID = $(this).at         


        
4条回答
  •  说谎
    说谎 (楼主)
    2021-01-14 18:28

    $wpdb->update( 'table',
    array( 'column' => $name),
    array( 'ID' => 1 ),
    array( '%s'), 
    array( '%d' )
    );
    

提交回复
热议问题