Where is this Queries executed? How can I turn off them?
-
Hi, where is the below queries executed by default on single page and home page?
SELECT option_name, option_value FROM wp_options WHERE autoload = ‘yes’
SELECT p.* FROM wp_posts AS p WHERE p.post_date < ‘2011-08-28 10:54:22’ AND p.post_type = ‘post’ AND p.post_status = ‘publish’ ORDER BY p.post_date DESC LIMIT 1
SELECT p.* FROM wp_posts AS p WHERE p.post_date > ‘2011-08-28 10:54:22’ AND p.post_type = ‘post’ AND p.post_status = ‘publish’ ORDER BY p.post_date ASC LIMIT 1
SELECT ID, post_name, post_parent FROM wp_posts WHERE post_name = ‘testing’ AND (post_type = ‘page’ OR post_type = ‘attachment’)
I am using twentyten theme.
I turned off all the page code but still could see the queries being executed.
appreciate your help in this regards
- The topic ‘Where is this Queries executed? How can I turn off them?’ is closed to new replies.