I have a custom table inside my wordpress database called test.
What if i query this table using mysql_query() instead of using for example $wpdb->get_results()
Will this affect my performance?
Ty very much:)
|
|
|
Simple and short:
But in most cases since
It can affect for better performance changes but they would be minor changes that its just not worth it. |
|||
|
|
|
Plugins caching DB queries hook into the WordPress API. If you don’t use the API your queries aren’t cached. The result is a slower site. |
|||
|
|