Wordpress : is it possible to connect $wpdb class into other database?

StackOverflow https://stackoverflow.com/questions/2542877

  •  23-09-2019
  •  | 
  •  

문제

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?

도움이 되었습니까?

해결책

You can just create a new instance:

$db2 = new wpdb('root','root','test','localhost');
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top