您在這裡
使用者登入
最新文章
回應
3 年 5 個月 之前
6 年 5 個月 之前
6 年 5 個月 之前
6 年 5 個月 之前
6 年 5 個月 之前
6 年 5 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
Re:
修改sites\all\themes\yourtheme\template.php
例如要新增一個top menu的區塊
<?php
function yorutheme_regions() {
return array(
'top_menu' => t('top menu'),
'left' => t('left sidebar'),
'right' => t('right sidebar'),
'content' => t('content'),
'header' => t('header'),
'footer' => t('footer')
);
}
?>
接著編輯page.tpl.php 在適當位置加入
<?php if ($top_menu) { ?>
<?php } ?>
以上我所知道的 如果有誤 歡迎指正