How To Access Wordpress Database

[Solved] How To Access Wordpress Database | Php - Code Explorer | yomemimo.com
Question : wordpress access database php

Answered by : martin-de-jonge

//https://developer.wordpress.org/reference/classes/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 : | Last Update : Thu, 30 Jun 22

Answers related to how to access wordpress database

Code Explorer Popular Question For Php