What is the alternative to invalid currentstyle parameter of dedecms homepage navigation bar?
This article mainly introduces the alternative method of invalid currentstyle parameter of the navigation bar on the home page of Dedecms. Invalid currentstyle parameter will cause the navigation bar to not be highlighted. This article gives another solution. Friends in need can refer to the following
Recommended learning: DreamWeaver cms
The default homepage of DreamWeaver does not set the highlight attribute, as long as other columns Can. The following code can solve this problem:
The code is as follows:
</p> <p><li{dede:field name=typeid runphp="yes"} (@me=="")? @me=" class='hover'":@me="";{/dede:field}> <a href='{dede:global.cfg_cmsurl/}/'><span>主页</span></a></li> {dede:channel type='top' row='10' currentstyle="<li class='hover'> <a href='~typelink~' ~rel~><span>~typename~</span></a></li>"} <li><a href='[field:typeurl/]' [field:rel/]><span>[field:typename/]</span></a></li> {/dede:channel}</p> <p>
The above code in bold blue is to determine whether the current column is the homepage, and if it is the homepage, add class='hover', otherwise it will not be added to achieve the desired effect.
The above is the detailed content of What is the alternative to the invalid currentstyle parameter of the homepage navigation bar of Dedecms?. For more information, please follow other related articles on the PHP Chinese website!