Home  >  Article  >  Backend Development  >  Detailed explanation of phpcms configuration list page example

Detailed explanation of phpcms configuration list page example

小云云
小云云Original
2018-02-10 09:47:491470browse

This article mainly introduces you to the phpcms configuration list page and the article release time. Friends who need it can refer to it. I hope it can help everyone.


<p class="moocConDetail">
   {pc:content action="lists" catid="11" order="id DESC" num="10" moreinfo="1"}
    <ul>
    {loop $data $key $val}
    {php list($copyfrom) = explode(&#39;|&#39;, $val[&#39;copyfrom&#39;])}
    <li>
     <a href="{$val[&#39;url&#39;]}" rel="external nofollow" >{$val[&#39;title&#39;]}</a>
     <span class="source">{$copyfrom}</span>
     <span class="acTime">{date(&#39;Y-m-d&#39;,$val[inputtime])}</span>
    </li>
    {/loop}
    </ul>
    {/pc}
  </p>

Calling the first-level column name and the second-level column name:


{$CATEGORYS[$CAT[parentid]][catname]}
{$CATEGORYS[$CAT[catid]][catname]}

Related recommendations:

How to add the like function to the homepage list page of empire cms

The above is the detailed content of Detailed explanation of phpcms configuration list page example. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn