我正在嘗試添加自定義頁面模板以僅顯示特定頁面的一個側欄。向論文添加自定義頁面模板
我創建了論文文件夾中的模板頁,我把這些線
<?php echo thesis_header(); ?>
<?php echo thesis_nav_menu(); ?>
<div id="custom-page">
<div class="content-column">
<?php echo thesis_content(); ?>
</div>
<div class="sidebars">
<?php echo thesis_sidebar_1(); ?>
</div>
</div>
<?php echo thesis_footer_area(); ?>
我發現了一個教程這個代碼,但是當我打開任何頁面,這個模板,頁面犯規正確顯示。因爲所有<頭> < /頭>部分丟失。 thesis_header()函數不會帶HTML頁面的部分。
我的問題;我怎樣才能添加所有這些部分就像thesis_html_framework()呢?
謝謝..
可能不是一個好的解決方案,但它節省了一天..在某些情況下,這是我們能做的最好的.. – dvdmn