What is the difference between Wpdb and WP_Query?
- Super User
- Topic Author
- Offline
- User
Less
More
- Posts: 3957
- Thank you received: 0
1 week 1 day ago #3897
by Super User
What is the difference between Wpdb and WP_Query? was created by Super User
What is the difference between Wpdb and WP_Query?
Please Log in to join the conversation.
- Super User
- Topic Author
- Offline
- User
Less
More
- Posts: 3957
- Thank you received: 0
1 week 1 day ago #3898
by Super User
Replied by Super User on topic What is the difference between Wpdb and WP_Query?
$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
Please Log in to join the conversation.
Time to create page: 0.075 seconds