Home> CMS Tutorial> DEDECMS> body text

How to get the same level column when there are no sub-columns in dedecms

藏色散人
Release: 2019-12-17 09:36:07
Original
2141 people have browsed it

How to get the same level column when there are no sub-columns in dedecms

How to get the same level column when {dede:channel type='son'} in dedecms has no sub-column?

dedecms share the solution to the problem of taking the same level column when {dede:channel type='son'} has no sub-column

Recommended study:梦Weavercms

Let me show you a piece of code first:

The code is as follows:

{dede:channelartlist typeid = 3} 
  • {dede:field name='typename'/}
  • {/dede:channelartlist}
    Copy after login

    The meaning of this code is to query the column id 3 The sub-column then queries the sub-column of the sub-column. The effect is as shown in the figure:

    But there will be a problem, that is, if the column has no sub-column, its column of the same level will be taken, so how to solve {dede:channel type='son'} What’s the problem with selecting columns at the same level when there are no sub-columns?

    It’s actually very simple:

    Open: include\taglib\channel.lib.php file.

    Find

    if($type=='son' && $reid!=0 && $totalRow==0)
    Copy after login

    and change it to

    if($type=='son' && $reid!=0 && $totalRow==0 && $noself=='')
    Copy after login

    That’s it.

    The above is the detailed content of How to get the same level column when there are no sub-columns in dedecms. For more information, please follow other related articles on the PHP Chinese website!

    Related labels:
    source:php.cn
    Statement of this Website
    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
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!