0

我正在建立一个顶部有滑块的网站。它出现在所有页面上,并直接构建在模板中(无模块/组件)。我怎样才能将它限制在主页上?

http://www.joomla24.com/remository/Download/Templates_for_Joomla_3.x/1%29_General_Joomla_3.x_Templates/DD-Medicine_RX.html

4

1 回答 1

0

对于确定的方法,请参阅http://docs.joomla.org/How_to_determine_if_the_user_is_viewing_the_front_page

我一般在模板的顶部设置一个变量,像这样:

$home_page = $menu->getActive() == $menu->getDefault();

然后我可以在我喜欢的页面上的任何位置使用该变量:

if ($home_page) {
  echo 'Home page only';
} else {
  echo 'Not the home page';
}
于 2013-02-02T08:28:15.310 回答