Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法使用 wpdb->update 进行更新
这是我的代码:
$tweet = $_POST['tweet']; $id = $_POST['id']; $wpdb->update( $table_name, array('id' => $id , 'tweet' => $tweet ), array( 'id' => $id ),array("%d","%s"), array("%d") );
我认为没有错,但我无法更新
感谢先进
$data_update = array('title' => $title ,'parent_id' => $parent_id); $data_where = array('id' => $id); $wpdb->update($table_name , $data_update, $data_where);
简单&工作;)