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);
シンプルで実用的;)