Wordpress : is it possible to connect $wpdb class

2020-02-10 10:43发布

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?

标签: wordpress
1条回答
我命由我不由天
2楼-- · 2020-02-10 11:10

You can just create a new instance:

$db2 = new wpdb('root','root','test','localhost');
查看更多
登录 后发表回答