如何打印wordpress查询?

时间:2013-06-28 17:26:25

标签: wordpress

我的wordpress网站上有一个while循环。如何打印其查询详细信息?

while (have_posts()) : the_post();

我试过了,但没有工作:

print_r($GLOBALS['wp_query']->request);

1 个答案:

答案 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; ?>应该可以正常工作,如果您之前没有这样做,只需将其放在循环之后。