Skip to content

Instantly share code, notes, and snippets.

View rvgpl's full-sized avatar
🖖

Ravigopal Kesari rvgpl

🖖
View GitHub Profile
@rvgpl
rvgpl / Query external database
Created November 1, 2014 07:50
Query external database from Wordpress
###################################################################################################
Query regular Wordpress database
###################################################################################################
//Declaring $wpdb as global and using it to execute an SQL query statement that returns a PHP object
global $wpdb;
$result = $wpdp->get_results('SELECT * FROM wp_options, OBJECT);
########################################################################################################
Querying a different database
########################################################################################################