本文目录一览:
- 1、怎么调栏目缩略图 帝国cms
- 2、帝国CMS7.0 为什么用火车头采集到的图片缩略图都是同一张呢?
- 3、phpcmsPHPCMS V9 缩略图能不能做到和原图一样显示 而不失真!
- 4、帝国CMS图片系统:如何点击实现放大效果
- 5、帝国cms首页多表调用,要调用栏目缩略图+标题。
- 6、如何制作帝国cms内容页的调用栏目缩略图
怎么调栏目缩略图 帝国cms
[e:loop={'3',24,0,0}]
lia href="?=$bqsr[classurl]?"
img width="70" height="40" src="?=$bqr[classimg]?" //a/li
[/e:loop]
或者指定ID
[e:loop={"select classid,classname,classimg,intro from phome_enewsclass where classid=3",1,24,0}]
lia href="?=$bqsr[classurl]?" target="_blank"spanimg src="?=$bqr[classimg]?" alt="?=$bqr[classname]?"/span?=$bqr[classname]?/a/li
[/e:loop]
你参考下
帝国CMS7.0 为什么用火车头采集到的图片缩略图都是同一张呢?
首先是帝国CMS
这款CMS早期功能和风讯类似,模版制作方面也非常类似,甚至可以把风讯的模版拿来直接贴到里面稍微改一下就能用!现在帝国CMS做的已经非常强大了!并且开源免费(以前也免费但是不开源)帝国CMS可以实现许多其他CMS无法实现的功能!不夸张的说你用帝国可以实现阿里巴巴、TAOBAO、网易新闻、地方门户,这些其他CMS想都不敢去想的功能,但是针对这些方面你需要学会这个CMS中关于模型扩展的功能,能熟练掌握的话你可以实现任何功能!并且帝国CMS拥有万能接口,可以与任何程序进行无缝整合~~这个这个是官方的说法……经过俺这么多年的使用发现只能与部分常用的PHP程序进行无缝整合~~要整合其他语言的程序太麻烦了!最值得表扬的是帝国CMS这么多年从来没出过1个漏洞!!注意~~是一个都没出过!这是其他任何CMS都比不上的!
DEDE 织梦CMS
这个不用多说了吧?PHP类CMS里最著名的一款,以简单上手功能强大而著称,大部分站长的首选。关键词替换、优化方面非常人性化,并且DEDE用户比例非常多!开源非常早,模版随处可见,如果你懒得自己设计,想直接套用别人的模版那么DEDE官方就有一个极其庞大的数据库!随便选,全是免费的!与其他程序整合方面DEDE内至了许多接口,与一些流行的程序都能实现整合!
PHP CMS
名字挺牛!不开源……用户少~~研究了很久很久……没发现有哪一点比的上上述两款的!
其他CMS还有很多,但是我实在没法多说……功能大家根本就是互相模仿!不会有哪个CMS比较独特的!最早发展起来的虽然是动易,但是基于ASP语言的缺陷经常出漏洞,这使得许多用户舍弃了ASP程序改用PHP。
关于采集功能方面我想说的是动易是最强大的,即使最强大也无法实现任何界面的采集,建议用火车头配合使用!
phpcmsPHPCMS V9 缩略图能不能做到和原图一样显示 而不失真!
前台调用图片的时候,用thumb函数来处理下,也不会失真的很离谱.程序实现其实大同小异.wp这个插件叫什么名字,看看算法是不是真的那么牛B
帝国CMS图片系统:如何点击实现放大效果
TAG:帝国cms找到标签模版里边的ID为11的标签模版,在list.var模板里找到 [!--picname--] 把上面的这段代码换成下面的 [!--picname--] 然后在重新生成内容页就可以了,当我们点击图片的时候就可以直接打开大图了关键字:帝国CMS教程相关文章:帝国cms缩略图:网站不同地方生成不同的缩略图帝国CMS远程保存图片功能失效帝国CMS7.0新版本增加信息管理权限分配,权限控制更灵活教你如何给帝国CMS系统添加登陆失败次数限制实现帝国CMS在登录和注册点击刷新验证码
帝国cms首页多表调用,要调用栏目缩略图+标题。
本来不想回答 去年做过项目4表联合 拿去自己改吧 不会改就没办法 不解释
[e:loop={'select *
from
(
(select id,classid,istop,title,titleurl,titlepic,newstime from phome_ecms_news where istop=1 order by newstime desc limit 13 )
Union All
(select id,classid,istop,title,titleurl,titlepic,newstime from phome_ecms_news1 where istop=1 order by newstime desc limit 13)
Union All
(select id,classid,istop,title,titleurl,titlepic,newstime from phome_ecms_news2 where istop=1 order by newstime desc limit 13)
Union All
(select id,classid,istop,title,titleurl,titlepic,newstime from phome_ecms_news3 where istop=1 order by newstime desc limit 13)
) as A order by newstime desc limit 20',0,24,0}]
?php
$fb=$empire-fetch1("select *
from
(
(select id,classid,smalltext from phome_ecms_news_data_1 where id='$bqr[id]' and classid='$bqr[classid]')
Union All
(select id,classid,smalltext from phome_ecms_news1_data_1 where id='$bqr[id]' and classid='$bqr[classid]')
Union All
(select id,classid,smalltext from phome_ecms_news2_data_1 where id='$bqr[id]' and classid='$bqr[classid]')
Union All
(select id,classid,smalltext from phome_ecms_news3_data_1 where id='$bqr[id]' and classid='$bqr[classid]')
) as A");
?
li class="clearfix"
a target='_blank' href="?=$bqr[titleurl]?" title="?=$bqr[title]?" class="index-img"img src="?=$bqr[titlepic]?$bqr[titlepic]:"404.jpg'?" alt="?=$bqr[title]?"/a
div class="index-text"
h1a target='_blank' href="?=$bqr[titleurl]?"?=$bqr[title]?/a
/h1
div class="index-con"/div
div class="index-intro"a target="_blank" href="?=$bqr[titleurl]??from=index_new_intro"?=$fb[smalltext]?/a/div
div class="index-like clearfix"
span class="time"
?php
$fr=$empire-fetch1("select *
from
(
(select id,classid,infotags from phome_ecms_news_data_1 where id='$bqr[id]' and classid='$bqr[classid]')
Union All
(select id,classid,infotags from phome_ecms_news1_data_1 where id='$bqr[id]' and classid='$bqr[classid]')
Union All
(select id,classid,infotags from phome_ecms_news2_data_1 where id='$bqr[id]' and classid='$bqr[classid]')
Union All
(select id,classid,infotags from phome_ecms_news3_data_1 where id='$bqr[id]' and classid='$bqr[classid]')
) as A");
$keyr=explode(',',$fr[infotags]);
for($i=0;$i2;$i++)
{
echo'spana href="/liaotian/tags-'.$keyr[$i].'-0.html" target=_blank'.$keyr[$i].'/a/spannbsp;nbsp;';
}
?
/span
span class="time"?=format_datetime($bqr[newstime],"m-d")?/span
div class="post-ope"
a href="/e/public/digg/?classid=?=$bqr[classid]?id=?=$bqr[id]?dotop=1ajaxarea=diggnum?=$bqr[id]?" class="post-like-btn post-like" id="post-like-top-btn"
script
document.write('script src="/e/public/ViewClick/?classid=?=$bqr[classid]?id=?=$bqr[id]?down=5?t="+Math.random()+'"'+'/script');
/script
/a
/div
/div
/div
/li
[/e:loop]
功能:联合取4表数据 关联取附表简介 并取标签 附加顶功能 动态浏览量等
如何制作帝国cms内容页的调用栏目缩略图
TAG:帝国cms
如何制作帝国cms内容页的调用栏目缩略图
帝国cms6.0后已经无法用[!--class.classimg--]直接调用栏目缩略图了,5.1以前的能行,现在只能在列表页能用[!--class.classimg--]调用缩略图标签,现在只有用灵动或者万能标签才能调用,调用代码如下
[e:loop={"select classimg from phome_enewsclass where classid='$GLOBAL[navclassid]'",1,24,0}]
[/e:loop]