Conversation
supportThe code in adredux_setup_fields() is fetching all tags and categories and looping over them, it can potentially fetch hundreds of MB of data from mysql if the site has a lot of tags, also doing a very slow query, the worse is that it does it on every admin page, so you’re shooting yourself in the foot. Quick fix public function adredux_setup_fields() { if ($_GET['page'] !== "adredux" && basename($_SERVER['REQUEST_URI'])!=="options.php") return; But it would deserve an update (though this plugin looks abandoned)
No comments were stored for this source.