反向功能输出的方式(Reverse the way of function output)

2019-10-21 04:58发布

我有一个很难扭转这种循环。

ATM,循环首先显示最新的帖子,因为这些都是在别人的顶部阵列中的我想加入,而我想让它显示时间最久的。

所以我的问题是,如何使最早的帖子显示第一,并在年底的最新节目?

这是第一个显示最新的帖子,在while循环的代码:

while($portfolio->have_posts())
{
    $portfolio->the_post();
    $post = get_post();
    $output .= '<a class="w-portfolio-item-anchor" href="javascript:void(0);" data-id="'.$post->ID.'">'
}
return $output;

此致,帕特里克·

Answer 1:

为了扭转这一点,这只是你的循环在什么地方添加到您的主题,:

query_posts($query_string . "&order=ASC");

或者找到它目前正在查询并确保&order=ASC使用。

或者,如@ɴ-ᴀ-ᴛ-ʜ在评论中提到,更改此:

$output .= '<a class="w-portfolio-item-anchor" href="javascript:void(0);" data-id="'.$post->ID.'">'

为此:

$output = '<a class="w-portfolio-item-anchor" href="javascript:void(0);" data-id="'.$post->ID.'">' . $output;


文章来源: Reverse the way of function output
标签: php wordpress