PHP Joomla 1.6将“第一”和“最后”CSS类添加到mod_menu

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Joomla 1.6将“第一”和“最后”CSS类添加到mod_menu相关的知识,希望对你有一定的参考价值。

// Replace 
if ($item->deeper) {
      $class .= 'deeper ';
   }

// with this
 $currentitemcount ++;
   if ($item->shallower or $currentitemcount == count($list)) {
      $class .= 'last ';
   }
   
   if ($lastdeeper or $currentitemcount == 1) {
      $class .= 'first ';
   }
   
   
   if ($item->deeper) {
      $class .= 'deeper ';
      $lastdeeper = true;
   } else {
      $lastdeeper = false;   
   }

以上是关于PHP Joomla 1.6将“第一”和“最后”CSS类添加到mod_menu的主要内容,如果未能解决你的问题,请参考以下文章

joomla 组件 1.5 到 joomla 组件 1.6

Joomla 组件:在视图中包含/需要 php

Joomla:多次覆盖类别博客输出?

将 PHP 网站转换为 Joomla

Joomla,Sp Page Builder和ReCaptcha

只在 Joomla 模块的 FOR 循环中显示最后一个结果