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.
嗨,我是编码新手,所以需要任何帮助。我正在使用 joomla 和为 joomla 构建的组件。单击链接时,我想加载模板来代替现有模板。该链接将加载以下语句。在现有页面上。
<?php echo $this->loadTemplate('common1'); ?>
通过 url 切换模板的一种简单方法是将模板名称简单地包含在 url 参数中,如下所示:
http://website.com/index.php?template=myTemplateName
其中myTemplateName是您的 joomla 站点上安装的模板之一。