首页 > 建站教程 > CMS教程 > phpcms >  PHPCMS学习第十天:用PC标签在列表页中调出文章内容正文

PHPCMS学习第十天:用PC标签在列表页中调出文章内容

对于文章储层而言,有v9_news和v9_news_data两个表,前面就是主表,后面是副表。如果需要调用文章内容,则这个字段是在v9_news_data 的content字段,在列表页是不能直接调用的,
然后添加 moreinfo="1"等于是结合两个表的字段,这样{$r['content']}就可以在pc:content action="lists"调用出数据了。  这里 moreinfo="1"必须是双引号
{pc:content action="lists" moreinfo="1" catid="$catid" num="25" order="id DESC" page="$page"}
{loop $data $r}
<div class="w680" id="{$n}">
<div {if $n%2==1}class="bj_06"{/if}{if $n%2==0}class="bj_07"{/if}>
<img src="{$r[thumb]}" />
<br />
{$r[content]}
</div>
</div>
{/loop}
{$pages}
{/pc}
在标签中加上  moreinfo="1" 为0不调用副表