Warning: Illegal string offset 'top' in /www/wwwroot/hellyhua.com/wp-content/themes/Snape/single.php on line 45

部分文件修改(来自交流群)    1.phpcms\modules\admin\templates\index.tpl.php内删除 锁屏后其它链接
    2.phpcms\languages\zh-cn\admin.lang.php 更改基础信息
    3.main.tpl.php 更改后台主页 信息 如:PHPCMS 开发团队
    4.caches\configs\database.php 改数据库链接密码

同时调用多个栏目的文章,文章前显示栏目名称(0622版本通过测试)

  1. {pc:get sql="SELECT * FROM v9_news WHERE catid IN (61,62,63,64,65) order by id DESC" num="10"  return="data" }

  2. {loop $data $n $r}

  3. <LI><SPAN><a href="{$CATEGORYS[$r[catid]][url]}">[{$CATEGORYS[$r['catid']]['catname']}]</A></SPAN><A href="{$r[url]}" target=_blank>{str_cut($r

    ,27,'')}</A></LI>

  4. {/loop} {/pc}

去掉标题限制后出现的省略号

  1. {str_cut($r

    ,36,'')}

复制代码

标题颜色

  1. {title_style($v[style])}

复制代码


2.格式化时间 2011-05-06 11:22:33

  1. {date('Y-m-d H:i:s',strtotime($inputtime))}

复制代码

格式化时间 2011年05月06日

  1. {date('Y年m月d日',strtotime($inputtime))}

复制代码

3.多栏目调用&多推荐位调用


  1. 调用需求:文章范围为59 60 61三个栏目,并且推送到了27 和28两个推荐位;从第三条开始,连续调用7篇文章。

  2. {pc:get sql="SELECT * FROM v9_news WHERE id IN (SELECT id FROM v9_position_data WHERE posid in(27,28) and catid in(59,60,61)) order by listorder DESC" cache="3600"  start="3" num="7"   return="data" }

  3. {loop $data $n $r}

  4. <li>·<a target="_blank" href='{$r[url]}'  title="{$r

    }" style="color:Black;">{str_cut($r

    ,22,'')}</a></li> 

  5. {/loop} {/pc}

复制代码

4.显示栏目名称(只是名称,不带链接)

  1. {$catname}

复制代码

显示栏目名称和链接(可以点击)

  1. <a href="{$CATEGORYS[$r[catid]][url]}">{$CATEGORYS[$r['catid']]['catname']}</A>

复制代码

5.获取父栏目id/获取父栏目名称
{$CATEGORY[$catid][parentid]}
父栏目名称:{$CATEGORYS[$CAT[parentid]][catname]}

6.外部数据源调用

  1. dedecmsdb 在后台数据源处添加

  2. {pc:get sql="SELECT * FROM cq_member where mtype='企业' " cache="3600" dbsource="dedecmsdb" num="7" return="data"}

  3. {loop $data $r} 

  4. <a href="/member/index.php?uid={$r[userid]}" title="{$r[uname]}" target="_blank">{str_cut($r[uname],28,'')}</a> 

  5. {/loop}{/pc}

复制代码

7.调用子栏目(在栏目首页模板需要用到)

  1. {pc:content action="category" catid="$catid" num="25" siteid="$siteid" order="listorder ASC"}{loop $data $r}

  2.     <a href="{$r[url]}">{$r[catname]}</a> | {/loop}{/pc}

复制代码

8.显示指定id的栏目名称 (例子这里catid=22)

  1. {$CATEGORYS[22]['catname']}

复制代码

9.在文章面前显示文章类别

  1. {pc:content action="lists" catid="79" order="listorder DESC" num="14" }

  2. <?php $TYPE = getcache('type_content','commons');?>

  3. {loop $data $n $r}

  4.     <li>{if $TYPE[$r[typeid]][name]}<span style="color:#CC6600">[ {$TYPE[$r[typeid]][name]}] </span>{/if}<a href="{$r['url']}"{title_style($r[style])}title="{$r['title']}" target="_blank">{str_cut($r

    ,33,'')}</a></li>

  5. {/loop}{/pc}

复制代码

10.指定变量循环增长(幻灯片经常用到)

  1. {pc:content action="lists" catid="66" order="listorder DESC" thumb="1" num="5" }

  2. {php $num = 0}

  3. {loop $data $r}

  4. linkarr[{$num}] = "{$r[url]}";

  5. picarr[{$num}]  = "{$r[thumb]}";

  6. textarr[{$num}] = "{str_cut($r

    ,36,'')}";

  7. {php $num++}

  8. {/loop} 

  9. {/pc}

复制代码

11.文章调用使用limit

  1. {pc:content action="position" posid="36"  num="1" order="listorder DESC limit 1,1–" }

  2. 其他都是跟以前一样使用

  3. {pc:content action="position" posid="31" order="listorder DESC" limit='1,8–'}

  4.     {loop $data $r}

  5. <li><a href="{$r[url]}" title="{$r

    }" target=_blank>{str_cut($r

    ,36,'')}</a></li>

  6.    {/loop} 

  7. {/pc}

复制代码

12.文章从指定位置开始调用 (谢谢txd1110提醒)

  1. 起始位置为5,调用3条。相当于limit功能。

  2. {pc:content  action="position" posid="27" order="listorder DESC" num="3" start="5"}

  3.     {loop $data $r}

  4.             <a  href='{$r[url]}'>{str_cut($r[description],115)}… </a>

  5.    {/loop} 

  6. {/pc}

复制代码

13.文章列表页调用关键字,或者首页调用关键字
注意:explode(',',$r[keywords]);是将文章关键词通过英文逗号分离,也就是说每一篇文章都要以逗号间隔关键字,否则调用出来会是全部作为一个关键字。如果是空格间隔关键字,将explode(',',$r[keywords]);改成explode(' ',$r[keywords]);


  1. {pc:content action="lists" catid="$catid" num="10" order="id DESC" page="$page"}{loop $data $r}

  2. <a href="{$r[url]}">{$r

    }</a>

  3. {php $keywords = explode(',',$r[keywords]);} 

  4.                                 <b>文章标签:</b> 

  5.                                 {loop $keywords $keyword}

  6.                                 <a  href="{APP_PATH}index.php?m=content&c=tag&catid={$catid}&tag={urlencode($keyword)}" class="blue"> {$keyword}</a>

  7.                                 {/loop}

  8. {/loop}{/pc}  

复制代码

14.每当列表几行的时候出现一次某些符号(比如首页里面的文章推荐,一行显示两条,在这两条中间想加一条竖线 | 就用到这个代码了)


  1. 数量大的话就容易出错,因为模运算嘛~~呵呵 不过一般也就4个标题以下

  2. {pc:content  action="position" posid="8" order="listorder DESC" num="2"}{loop $data $r}

  3. <a style="color:#040605" title="{$r

    }" href="{$r[url]}" target=_blank>{str_cut($r

    ,26,'')}</a>{if $n%2==1} |{/if}

  4. {/loop}{/pc}

复制代码

15.v9 列表页完美支持自定义段调用  (lastkaixin)

  1. {pc:content action="lists" catid="$catid" num="25" order="id DESC" page="$page" moreinfo="1"}

  2. {loop $data $r}

  3.       <a href="{$r[url]}">[{$r['字段名']}]> {$r

    }</a>

  4.    {/loop}   

  5.    <div class="pagebar">

  6. {$pages}</div>

  7. {/pc}

复制代码

16.当前栏目调用父级及以下栏目信息方法  (windf)


  1. 其他代码 该咋地还是要咋地 。这是要素

  2. {php $arrchildid = $CATEGORYS[$CAT[parentid]][arrchildid]}

  3. {pc:get sql="SELECT * FROM v9_news where catid in($arrchildid) cache="3600" page="$page" num="12" return="data"}

复制代码

17.V9表单功能 提交之后如何返回当前页面,而不是默认的首页文件地址
找到 phpcms\modules\formguide\index.php文件第73行

  1. showmessage(L('thanks'), APP_PATH);

复制代码

修改成 如下代码即可实现自动返回前一页

  1. showmessage(L('thanks'), HTTP_REFERER);

复制代码

18.v9 首页或分页自定义字段调用(phpcms2011)
和15差不多
第一普通列表或栏目调用自定义字段
在{pc:content  action="lists" 后加上副表moreinfo=1 (等于1时显示,0时不显示)
例子:

  1. {pc:content  action="lists" moreinfo=1 catid="2" order="id DESC" num="4"}

  2. <ul>{loop $data $key $val}<li><a href="{$val['url']}">{$val['title']}</a>

  3. <br>价格:{str_cut($v['自定义段'],100)}    //100 是字数

  4. </li>{/loop}</ul>{/pc}

复制代码

第二种推荐位调用自定义字段
在模型里加好自定义字段后,必须把“在推荐位标签中调用”点击“是“
然后用同一样的方法去调节数据就OK了,记住,如果你加了文章,必须去更新文章才会显示,自定义段在推荐中只显示你选择后,选择前加的加文章不显示,更新一下文章就显示了
例子:

  1. {pc:content action="position" posid="推荐位id" num="30" thumb="1" moreinfo="1" order="listorder DESC"}

  2. {loop $data $key $val}<LI>

  3. <a href="{$val['url']}" target="_blank"><img src="{$val['自定义段']}" alt="{$val['title']}" height=36 width=98 /></a>

  4. <a href="{$val['url']}" target="_blank">{str_cut($val['title'],20)}</a></LI>

  5. {/loop}{/pc}

复制代码

19.V9调用discuz 论坛x2版本数据库的方法 (meteors)
原帖地址:http://bbs.phpcms.cn/viewthread.php?tid=280865


20.编辑器上传图片自动使用标题作为alt参数(世界首富)
原帖地址:http://bbs.phpcms.cn/viewthread.php?tid=280301

21.增加文章的随机点击数(viqecel)

  1. 找到100行的$views = $r['views'] +1

  2. 修改为:

  3. $rand_nums=rand(79,186);


  4. $views = $r['views'] + $rand_nums;


  5. 表示点击一次,增加79到186次不等

复制代码

—————————————————————————————————————————–
tips:某些版本出错民间解决方法
1.缩略图以及图集无法上传
\phpcms\libs\classes\attachment.class.php
请把24行的(也有可能是23行)
$this->upload_func = 'copy';
改成
$this->upload_func = 'move_uploaded_file';

2.碎片模块搜索文章看不到栏目
phpcms\modules\block\templates\search_content.tpl.php
13行改成

  1. <td><?php

  2. if(isset($_GET['dosubmit'])){?><div class="rt"><a 

  3. href="javascript:void(0)" onclick="$('#search').toggle()"><?php 

  4. echo L('folded_up_in_search_of')?></a></div><?php } 

  5. echo form::select_category('', $catid, 'name="catid" id="catid"', '', 

  6. '', '0', 1)?> </td>


Warning: Illegal string offset 'footer' in /www/wwwroot/hellyhua.com/wp-content/themes/Snape/single.php on line 49