我的wordpress网站上有一个while循环。如何打印其查询详细信息?
while (have_posts()) : the_post();
我试过了,但没有工作:
print_r($GLOBALS['wp_query']->request);
答案 0 :(得分:0)
在functions.php
中添加this,然后在?debug=sql
之后添加url
,例如
http://someUrl.com/something?debug=sql
或者
http://localhost/localCopy?debug=sql
同样<?php echo $GLOBALS['wp_query']->request; ?>
应该可以正常工作,如果您之前没有这样做,只需将其放在循环之后。