我需要做什么才能将我的最新帖子自动转到页面顶部?现在最新的帖子走到了早期帖子的底部。
PHP:
<div id="container">
<div id="blog">
<div class="grid_9 float-left">
<?php foreach($posts->results as $post): ?>
<div class="post box_shadow">
<h2><a href="<?php echo URL::to('uutiset/post/'.$post->id.'/'.\Laravel\URL::slug($post->title)) ?>"><?php echo $post->title ?></a></h2>
<small><?php echo date('d-m-Y',strtotime($post->date)) ?></small>
<p><?php echo Str::limit_word($post->content, 40); ?></p>
<a href="<?php echo URL::to('uutiset/post/'.$post->id.'/'.\Laravel\URL::slug($post->title)) ?>"><?php echo Lang::line('home.blog_read_more', array(), $lang)->get() ?></a>
</div>
<?php endforeach ?>
<?php echo $posts->links()?>
</div>
</div>
<div id="footer" class=" box-shadow">
<?php echo stripcslashes($setting->footer)?>
</div>
</div>
我还是新手,所以你能给出建议我需要修改或添加哪些行以及在哪里?
答案 0 :(得分:0)
这就是你的数组的排序方式。 options:reverse the array或者从最后一个索引到0开始执行for循环。
类似于下面的内容:
`$posts->results` has all of your posts
Replace the foreach with a for.
$count = count($posts->results);
for($i = $count-1; $i <= 0; $i--) {
$post = $posts->results[$i];
//display post
}
最简单但可能效率较低的方法是在foreach循环之前反转数组。
答案 1 :(得分:0)
如果它与你想要的东西完全相反,那么在点击循环之前尝试在其上运行array_reverse。