Is issue of pulling all data fixed?
-
In file: page_post_redirect_plugin.php: 1465
All the data for second table is being pulled in sql query:
SELECT * FROM $wpdb->postmeta a, $wpdb->posts b
while all that is needed is this:
SELECT a.*, b.ID, b.post_status
This brings huge data for large number of posts in any blog, This is a quick fix, please do update it.
- The topic ‘Is issue of pulling all data fixed?’ is closed to new replies.