Wordpress : is it possible to connect $wpdb class

2020-02-10 10:30发布

问题:

the question is related to wordpress coding only. If it possible, the code solution is able to use inside a wordpress blog.

$wpdb is only work with database that been declare in wp-config. So it possible to clone $wpdb then use the clone to access different database?

回答1:

You can just create a new instance:

$db2 = new wpdb('root','root','test','localhost');


标签: wordpress