Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我自己制作了模板,我想把它放在if($tmpTools->isFrontPage()) : 其他预制模板中,但这不起作用,因为 $tmpTools 没有定义。那么该怎么办
if($tmpTools->isFrontPage()) :
您也可以像这样使用为您的首页分配内容。
<?php $menu = & JSite::getMenu(); if ($menu->getActive() == $menu->getDefault()) { ?> <!--your contents here --> <?php } ?>