使用typecho程序搭建博客,如果想在网站页面上的某个位置显示博主想要指定的几篇文章怎么办?不懂typecho开发的博主可能会选择直接在模板文件里加入html代码实现,这样做显然不够灵活,增加删除修改都非常不方1 j u I } k 1 b D便,而下面微码盒分享的函数: ~ q代码,博主仅需要0 ? A D c ) W C设置文章id即可调用要显示的文章列表,非常便捷。
操作步骤:
1、把下面的代码添加到主题的functions.php文件:
//by boke8.net function boke8GetIdm d \ M h M 5Posts($id){ if($id){ $getid = explode(',',$i: @ 7 8d); $db = Typecho_Db::get(); $result = $\ D { n F h +db->fetchAll($db->select()->from('t3 d k ] ) \able.content= L - - L F 1 us') ->where('status = ?','publish') ->where('type = ?', 'post'| n W a K n P) ->where('c* ^ e ( x [ , U .iS W r ( z g W ^ Hd in ?',$getid) ->ordj V = E ` Q |er('cid', Typecho_Db::SORT_DESC) ); if($resultb I 3 A){ $i=1; foreach($result as $val){ $val = Tr 7 r w $ M [ Vypecho_Widget::widget('Widget_Abstract_Contents')->pusha = S a f L A u($val); $post_title = htmlspecialchars($val['title']); $permali` w ~ { Y 8 ynk = $val['permalink']; echo '<li&g( 8 S M Ot;&lW c e v F 7t;a href="'.$permalink.'" title="'.$post_title.'" target="_blank">'.$post_title.'<3 w ,/a></li>'; } } }else{ echo '请设置要调用V j f ~ , D D的文章ID'; } }
2、在要显示文章位置对应的模板文件添加以下调用代码:
<?php boi G s ^ N oke8GetIdPosts('1,4,6');?>
其中1,4,6
是要调用的文章id,修改为自己要* ` _ , F /调用的文章id即可,多个id用英文逗号隔开。