Forum

What is the differe...
 
Notifications
Clear all

What is the difference between Wpdb and WP_Query?


(@elias)
Member Moderator
Joined: 5 months ago
Posts: 4277
Topic starter  

What is the difference between Wpdb and WP_Query?


   
Quote
(@elias)
Member Moderator
Joined: 5 months ago
Posts: 4277
Topic starter  

$wpdb is a PHP global variable that holds the WordPress database object, which is actually an instantiation of the wpdb class. WP_Query actually uses wpdb to query the database. Use WP_Query when you manipulate native WordPress tables (the vast majority of common tasks). Use $wpdb when you manipulate custom tables


   
ReplyQuote
Share: