Joomla-在主页上执行一些代码,在所有其他页面上执行其他代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Joomla-在主页上执行一些代码,在所有其他页面上执行其他代码相关的知识,希望对你有一定的参考价值。
This will let you execute certain scripts on the home page and other scripts on the other pages of the site.
<?php //This will detect the Home Page of Joomla and perfom whatever code you tell it to $menu = & JSite::getMenu(); if ($menu->getActive() == $menu->getDefault()) { //This code will be executed on the home page } else { //This code will be executed on every page except the home page } ?>
以上是关于Joomla-在主页上执行一些代码,在所有其他页面上执行其他代码的主要内容,如果未能解决你的问题,请参考以下文章