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