我在我的子主题页面--front.tpl 文件中使用了此代码,但我在首页上看不到任何消息,例如下面的代码。
<?php
$flag = drupal_is_front_page();
if ($flag) {
drupal_set_message("Welcome to front page of this site.");
}
else
{
drupal_set_message("Now you are in page other than front page.");
}
?>