我正在尝试按asc顺序按id排序post,我可以在使用单个查询时这样做,但在使用数组查询时,我取消了按asc顺序按id排序post的比例我的代码如下所示
<?php
$ourCurrentPage = get_query_var('paged');
$newposts = new WP_Query(array(
'category_name' => 'stock-market-basics',
'orderby' => 'ID',
'order' => 'ASC',
'paged' => $ourCurrentPage
));
?>
<?php
if ($newposts->have_posts()):
while ($newposts->have_posts()):
$newposts->the_post();
?>
//一些显示代码和关闭后代码//
<?php endwhile; else : ?>
<p><?php esc_html_e( 'Sorry, no results matched your criteria.' ); ?</p>
<?php endif; ?>
<li><?php
echo paginate_links(array(
'total' => $newposts->max_num_pages
));
?></li>
1条答案
按热度按时间q35jwt9p1#
按类别名称的wordpress查询
希望这对你有用。