码迷,mamicode.com
首页 > 其他好文 > 详细

织梦文章添加字段填栏目id,内容页调用字段里的栏目文章

时间:2018-11-03 17:40:16      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:efault   style   mit   left join   curl   hive   one   sde   ref   

在模型里增加个字段,然后在添加文章的时候,在字段里填了栏目id进去

在前台的内容页,调用这个字段栏目的多个文章出来

{dede:field.field1 runphp=yes}
global $dsql;
$sql = "select arc.*,tp.typedir,tp.typename,tp.corank,tp.isdefault,
tp.defaultname,tp.namerule,tp.moresite,tp.siteurl,tp.sitepath
from `myblog_archives` arc left join `myblog_arctype` tp on arc.typeid=tp.id where tp.id in (@me) LIMIT 10";
$dsql->SetQuery($sql);
$dsql->Execute(‘t‘);
$result = ‘‘;
while($row = $dsql->GetArray(‘t‘))
{
	$arcurl=GetOneArchive($row[‘id‘]);
	$pubdate = MyDate(‘Y-m-d H:i:s‘,$row[‘pubdate‘]);
	$result .= "<li><span>{$pubdate}</span><a href=\"{$arcurl[‘arcurl‘]}\">{$row[‘title‘]}</a></li>";
}
@me = $result;
{/dede:field.field1}

field1 为字段名称

织梦文章添加字段填栏目id,内容页调用字段里的栏目文章

标签:efault   style   mit   left join   curl   hive   one   sde   ref   

原文地址:https://www.cnblogs.com/dedevip/p/9901169.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!