Last inserted id

You can find last inserted mysql id using WordPress wpdb Class:


global $wpdb;

$last_insert_id = $wpdb->insert_id;

Leave a Comment