Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to run database query in wordpress?

Answer Posted / Chandra Prakash

To run a custom database query in WordPress, you can use the wpdb class. Here's an example of how to execute a simple SQL SELECT query:nn```phpn// Create an instance of wpdb classnglobal $wpdb;nn// Define the table and the query columnsn$table = $wpdb->prefix . 'posts';n$columns = array('ID', 'post_title');nn// Execute the query using the get_col() method to fetch a single row of resultsn$results = $wpdb->get_col($wpdb->prepare("SELECT %s FROM $table", implode(', ', $columns)));n```

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How much is the wordpress business plan?

155


Do you know what is the current version of wordpress?

187


Tell me how do I redirect users back to my blog's main page after they login?

198