你好!WP 在哪里以及如何组成所有帖子的数组(对数据库的查询在哪里)?这是显示所有帖子的代码:
<?php while (have_posts()) : the_post(); ?>
<?php appthemes_before_post(); ?>
<?php get_template_part('content', APP_POST_TYPE); ?>
<?php appthemes_after_post(); ?>
<?php endwhile; ?>
<?php appthemes_after_endwhile(); ?>
<?php else: ?>
<?php appthemes_loop_else(); ?>
<?php endif; ?>
我需要重做数据库查询以更改帖子输出的顺序
使用钩子
pre_get_posts
。这是一个按自定义字段和日期排序的示例:当然,您可以指定自己的排序方法。代码必须粘贴到
functions.php
您的主题文件中。