Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

wordpress wpdb

<?php
// 1st Method - Declaring $wpdb as global and using it to execute an SQL query statement that returns a PHP object
global $wpdb;
$results = $wpdb->get_results( "SELECT * FROM {$wpdb->prefix}options WHERE option_id = 1", OBJECT );
Source by developer.wordpress.org #
 
PREVIOUS NEXT
Tagged: #wordpress #wpdb
ADD COMMENT
Topic
Name
6+9 =