Thursday, December 15, 2011

How to get last inserted ID from wordpress database ?

How to get last inserted  ID from wordpress database ?



Straight after the $wpdb->insert() that does the insert, do this:
$lastid = $wpdb->insert_id;
More information about how to do things the wordpress way can be found in the wordpress codex. The details above were found here on the wpdb class page

1 comment: