读书人

Drupal中判断当前页面替分类页的方法

发布时间: 2012-07-08 17:43:43 作者: rapoo

Drupal中判断当前页面为分类页的方法
Drupal中判断当前页面为分类页的方法

MiMi Posted on 2009.11.05 00:01 // 1 Comment

在Drupal中,分类系统路径都是类似这种格式:

taxonomy/term/10

taxonomy/term/17

那么,根据Drupal API,判断当前页面为分类页面,可以这样写:

if ( arg(0) == ‘taxonomy’ && arg(1) == ‘term’ )?{

echo ‘这是分类’;

} else {

echo ‘这不是分类’;

}

读书人网 >开源软件

热点推荐