织梦文章添加字段填栏目id,内容页调用字段里的栏目文章
在织梦模型里增加个字段,然后在添加文章的时候,在字段里填了栏目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 `dede_archives` arc left join `dede_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 .= “
“;
}
@me = $result;
{/dede:field.field1}
field1 为字段名称
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦文章添加字段填栏目id,内容页调用字段里的栏目文章
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦文章添加字段填栏目id,内容页调用字段里的栏目文章