Is there any method to close connection similar to mysql_close()
for wpdb
in WordPress?
Is it not necessary to close connection for global wpdb
?
Leave a Reply
You must be logged in to post a comment.
Is there any method to close connection similar to mysql_close()
for wpdb
in WordPress?
Is it not necessary to close connection for global wpdb
?
You must be logged in to post a comment.
WP 4.5 had introduced
wpdb->close()
method to close connection in current instance.Old answer
There is no explicit method. It stores link identifier in$wpdb->dbh
field, but it is protected, so not convenient to run close on.