作为对Milo\'s 回答和WP_Query Codex 上面的条目,这里是一个很好的小备忘单和参考,它总结了$arguments
与一起使用WP_Query
;
WordPress Query Comprehensive Reference
https://gist.github.com/2023628
<由luetkemj编译luetkemj.com
。。。这里有一个小要点,可以用来调试您的查询,
Debugging WP_Query
https://gist.github.com/3699573
来自wpsmith
add_action( \'template_redirect\', \'wps_debug\' );
function wps_debug() {
global $wp_query;
if( isset( $_GET[\'debug\'] ) ) {
echo \'<pre>\'; print_r( $wp_query ); echo \'</pre>\';
}
}
附:这只是一种快速而肮脏的方式来了解发生了什么。还有其他一些工具、代码片段和插件,它们以一种更有组织的方式完成这项工作。但这是另一次讨论。