Solution for : How to get last inserted row ID from wordpress database?
Straight after the $wpdb->insert()
that does the insert, do this:
1 | $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
No comments:
Post a Comment