Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

get last inserted id from wordpress $wpdb

Tags:

wordpress

I would like to get last inserted id after $wpdb->insert().I got a solution with $wpdb->insert_id(); but unfortunately which retrieves the primary key plus an additional zero. ie, consider my primary key (or inserted id) is 2 $wpdb->insert_id(); retruns 20 .whats wrong with this method?anybody can please help me.

like image 522
Aadi Avatar asked Sep 23 '10 10:09

Aadi


1 Answers

The insert_id is a property, not a method. Try it without the () at the end, see what you get.

like image 174
jay.lee Avatar answered Oct 19 '22 20:10

jay.lee