Changes between Initial Version and Version 1 of Ticket #9444, comment 24
- Timestamp:
- 02/15/2015 09:49:14 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9444, comment 24
initial v1 4 4 5 5 I can use something like the following code to gather the necessary credentials to instantiate an wpdb class and assign it to global variable $wpdb, and then use the WP Transient API, I think. 6 6 {{{ 7 7 $array = file("wp-config.php"); 8 8 $dbArray = array(); … … 16 16 } 17 17 } 18 18 }}}