我的whmcs主题css和js非常多。我尝试将css和js与PHP脚本结合起来。
PHP脚本需要包含一个php文件头。所以在whmcs root中没有header.php
所以我在mycode.tpl
中创建了mycode.php和theme文件夹在mycode.php和
上添加了以下代码 {php} echo 'hello world' {/php}
正在运作
// instead of
require_once('vendor/smarty/smarty/libs/Smarty.class.php');
$smarty = new Smarty();
// use
require_once('vendor/smarty/smarty/libs/SmartyBC.class.php');
$smarty = new SmartyBC();
但是header.tpl没有使用相同的代码:{php} echo 'hello world' {/php}
我确实创建了header.php并添加了smartbc代码,但仍无效。
我能为此做些什么?有什么想法吗?