0
我在我的WordPress站點有一段時間的循環。如何打印其查詢詳細信息?如何打印wordpress查詢?
while (have_posts()) : the_post();
我試過了,但不工作:
print_r($GLOBALS['wp_query']->request);
我在我的WordPress站點有一段時間的循環。如何打印其查詢詳細信息?如何打印wordpress查詢?
while (have_posts()) : the_post();
我試過了,但不工作:
print_r($GLOBALS['wp_query']->request);
添加this在那麼你functions.php
的url
之後添加?debug=sql
,例如
http://someUrl.com/something?debug=sql
或者
http://localhost/localCopy?debug=sql
也<?php echo $GLOBALS['wp_query']->request; ?>
應該工作,只要把它放在循環之後,如果你以前沒有。