Currently some internal wprsrv data is fetched using raw queries with $wpdb. This has been done to keep things simpler and not having to instantiate WP_Query objects for something which does not need a "post loop".
This needs to be checked to make sure it is the correct way and does not open vulnerabilities and such to the system.
Currently some internal wprsrv data is fetched using raw queries with
$wpdb
. This has been done to keep things simpler and not having to instantiateWP_Query
objects for something which does not need a "post loop".This needs to be checked to make sure it is the correct way and does not open vulnerabilities and such to the system.