织梦CMS内容页有上一篇下一篇文章,没有上一个栏目下一个栏目,我们可以不用修改程序内核文件,直接在模板里用“runphp”输出上一个栏目和下一个栏目。
上一个栏目下一个栏目标签写法:适用于列表页、内容页,适用于动态、静态
{dede:field.typeid runphp=yes} global $dsql; $topreid = (@me==GetTopid(@me)) ? @me : GetTopid(@me); $row = $dsql->GetOne("SELECT * FROM `#@_arctype` WHERE reid=$topreid AND id<@me order by id desc"); if(!is_array($row)) { @me = "<li>上一个栏目:没有了</li>"; } else { $row['typeurl'] = GetOneTypeUrlA($row); @me = "<li>上一个栏目:<a href='{$row['typeurl']}'>{$row['typename']}</a></li>"; } {/dede:field.typeid} {dede:field.typeid runphp=yes} global $dsql; $topreid = (@me==GetTopid(@me)) ? @me : GetTopid(@me); $row = $dsql->GetOne("SELECT * FROM `#@_arctype` WHERE reid=$topreid AND id>@me order by id asc"); if(!is_array($row)) { @me = "<li>下一个栏目:没有了</li>"; } else { $row['typeurl'] = GetOneTypeUrlA($row); @me = "<li>下一个栏目:<a href='{$row['typeurl']}'>{$row['typename']}</a></li>"; } {/dede:field.typeid}
到此这篇关于dedecms列表页内容页模板调用上一个栏目下一个栏目方法的文章就介绍到这了,更多相关dedecms调用上一个栏目下一个栏目内容请搜索苹果cms教程以前的文章或继续浏览下面的相关文章,希望大家以后多多支持苹果cms教程!
Hi, this is a comment. To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. Commenter avatars come from Gravatar.