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.
我目前正在编辑 WHMCS 的一个模板,它是由 Smarty 编写的。
我可以使用一些简单的东西吗
{if $is_homepage} show something {/if}
哪个主页是从homepage.tpl 加载的,意思是索引页。因为我想加载一些代码,只在主页上。谢谢。
相当hacky,但你可以尝试这样的事情:
{if ($smarty.server.SCRIPT_NAME eq "/index.php")} {/if}
如果您需要优化代码,请改用它。
{if $filename eq "index"} your code here {/if}
您不必包含像.tpl这样的文件扩展名(以防万一您想知道)