dedecms文章添加字段填栏目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 `58pic_archives` arc left join `58pic_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 rel="nofollow noopener noreferrer" href=\&;{$arcurl['arcurl']}\&;>{$row['title']}</a></li>";
}
@me = $result;
{/dede:field.field1}

field1为字段名称

以上就是dedecms文章添加字段填栏目id,内容页调用字段里的栏目文章。人生最后一班地铁,这次绝对不再迟到!更多关于dedecms文章添加字段填栏目id,内容页调用字段里的栏目文章请关注haodaima.com其它相关文章!

标签: dedecms id