query_posts()
是 WordPress 中用于修改主查询的函数,但在实际开发中需要谨慎使用。`query_posts() 会完全替换 WordPress 的主查询,这可能导致一些意外问题:
破坏主查询对象 ($wp_query)
影响分页功能
可能导致插件兼容性问题
影响页面模板的正常工作
基本语法
query_posts( $args );
参数 $args 与 WP_Query 的参数相同。
使用示例
// 只显示特定分类的文章
query_posts( array(
'category_name' => 'news',
'posts_per_page' => 5
) );
使用后必须重置查询:
wp_reset_query(); // 恢复原始查询
###推荐替代方案
####使用 WP_Query (推荐)
$custom_query = new WP_Query( array(
'post_type' => 'post',
'posts_per_page' => 5,
'category__in' => array( 2, 6 )
) );
if ( $custom_query->have_posts() ) {
while ( $custom_query->have_posts() ) {
$custom_query->the_post();
// 显示内容
}
}
wp_reset_postdata(); // 重置
####使用 pre_get_posts 钩子
修改主查询而不替换它:
function modify_main_query( $query ) {
if ( $query->is_main_query() && ! is_admin() ) {
$query->set( 'posts_per_page', 5 );
}
}
add_action( 'pre_get_posts', 'modify_main_query' );
###参数参考
常用参数包括:
category_name - 分类别名
cat - 分类ID
tag - 标签
post_type - 文章类型
posts_per_page - 每页数量
orderby - 排序字段
order - 排序方式 (ASC/DESC)
###注意事项
避免在插件或主题中过度使用 - 可能影响其他功能
不要用于页面模板 - 使用 WP_Query 更安全
始终重置查询 - 防止后续代码出现问题
性能考虑 - 每次调用都会执行新的数据库查询