Inserting data into a table in WordPress database using WordPress $wpdb

后端 未结 4 1947
名媛妹妹
名媛妹妹 2021-02-04 07:46

I am starting out plugin development and have followed the tutorials on the WordPress Codex sites. I am now stuck - I have a database called \"wp_imlisteningto\", where the

4条回答
  •  终归单人心
    2021-02-04 08:32

    You've probably figured this out by now, but no one addressed it here. Your sample code has '$s' in the 3rd parameter (2nd array), but that should be '%s' because it's for value-formatting. The WP Codex says [http://codex.wordpress.org/Class_Reference/wpdb] that this format parameter for $wpdb->insert() is optional.

提交回复
热议问题