接上面一篇文章,这篇讲怎样增加"最近发表的文章"这个功能.同样先在theme.php的add_template_vars函数中加入:
- $this->assign('recent_posts',
- Posts::get( array('limit'=>5, 'status'=>'published',
- 'orderby'=>'pubdate DESC' ) ) );
修改"5"为你想要显示的数目.
接着编辑你想要增加这功能的地方,比如侧边栏 sidebar.php,加入下面的代码:
- <h2>Blog articles</h2>
- <ul>
- <?php
- foreach ($theme->recent_posts as $post) {
- echo '<li><a href="', $post->permalink, '">',
- $post->title, '</a></li>';
- }
-
- ?>
- </ul>
好了,完成了,此文资料来源Habari的官方wiki.

Tag Cloud