Saturday, 5 December 2015

How to get last inserted row id from wordpress database?

global $wpdb;
/** insert query here with $wpdb**/
/** insert query here with $wpdb**/
 $lastId = $wpdb->insert_id; //This is last insert id

No comments:

Post a Comment