我的 wordpress 网站中有一个 while 循环。如何打印其查询详情?
while (have_posts()) : the_post();
我试过了,但没有工作:
print_r($GLOBALS['wp_query']->request);
我的 wordpress 网站中有一个 while 循环。如何打印其查询详情?
while (have_posts()) : the_post();
我试过了,但没有工作:
print_r($GLOBALS['wp_query']->request);
将其添加到您的functions.php
然后添加?debug=sql
之后url
,例如
http://someUrl.com/something?debug=sql
或者
http://localhost/localCopy?debug=sql
也<?php echo $GLOBALS['wp_query']->request; ?>
应该工作,如果你之前没有,只需将它放在循环之后。