joomla中设计独立首页样式

针对基于joomla网站的二次开发时会发现,有些需求提出首页的样式需要非常非常的特别。甚至和二级页面完全不一样。
这样,就需要我们单独去设计一个首页的模板。
首先,在您使用的模板文件夹中找到index.php,然后另存为两份,home.php和default.php 。
然后将index.php修改为:

defined( ‘_JEXEC’ ) or die( ‘Restricted access’ );
function isFrontPage(){
return (JRequest::getCmd(’option’)==’com_content’ && !JRequest::getInt(’id’));
}
if(isFrontPage()){
include_once (dirname(__FILE__).DS.’/home.php’);
} else {
include_once (dirname(__FILE__).DS.’/default.php’);
}

posted @ 2010-07-29 11:37  njcdh  阅读(334)  评论(0)    收藏  举报