如果我们在用Typecho程序搭建网站的时候,有需要在特殊的位置调用指定的文章,比如我们可以直接用指定的ID调用,作为类似文章推荐的实现方法。

第一步:编写代码

//by itbulu.com

function typechoer GetIdPosts($id){

if($id){

$getid = explode(',',$id);

$db = Typecho_Db::get();

$result = $db->fetchAll($db->select()->from('table.contents')

->where('status = ?','publish')

->where('type = ?', 'post')

->where('cid in ?',$getid)

->order('cid', Typecho_Db::SORT_DESC)

);

if($result){

$i=1;

foreach($result as $val){

$val = Typecho_Widget::widget('Widget_Abstract_Contents')->push($val);

温馨提示! 你需要支付 ¥0.92 元后才能查看付费内容
点赞(250) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部