本文主要是介绍ECSHOP 首页根据ID调用单篇文章代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、首先在index.php 的125行左右添加如下代码:
$smarty->assign('one_articles', index_get_one_articles(5)); // 其中5为文章ID
在最后加上如何代码:
/***查询单篇文章代码****/
function index_get_one_articles($article_id)
{
$sql = "SELECT content FROM " .$GLOBALS['ecs']->table('article'). "where article_id = " .$article_id;
$res = $GLOBALS['db']->getAll($sql);
$arr = array();
foreach ($res AS $idx => $row)
{
$arr[$idx]['content'] = $row['content'];
}
return $arr;
}
2、在模板中调用使用如下代码:
<!--{foreach from=$one_articles item=article}-->
{$article.content}
<!--{/foreach}-->
这篇关于ECSHOP 首页根据ID调用单篇文章代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!