<{assign var=theme_name value=$xoTheme->folderName}>
```
$xoTheme->folderName :物件的寫法
五、顯示可用變數
1. 在佈景前面加入: ```
<{assign var=show_var value=1}>
```
這是在佈景指定變數的方式
2. 在</body> 之前:
```
<{if $xoops_isadmin and $show_var}>
<{includeq file="$theme_name/tpl/show_var.html"}>
<{/if}>
```
includeq file 是引入子樣板的方法,預設根目錄為「/themes」
六、用絕對路徑取代相對路徑
1. ![](https://www.ugm.com.tw/uploads/tad_book3/image/theme/step5.jpg)
2. "vendor/ => "<{xoImgUrl}>vendor/
3. "css/ => "<{xoImgUrl}>css/
4. "js/ => "<{xoImgUrl}>js/
5. "img/ => "<{xoImgUrl}>img/
6. 備註:通常要取代的單字,我習慣多選取 單字 的頭尾兩個字,以避免取代其他不想取代的單字。ctrl+H
7. 可用chrome 檢查,直到沒有錯誤為止
七、改變 jquery 引入方式
```
```