這取決於你要在主題中加入什麼東西。除非你想要,否則你不需要這一切。
你需要的最低是側邊欄整合,這裏有一個例子:
if (function_exists('register_sidebar'))
register_sidebar(array(
'before_widget' => '<div class="side">',
'after_widget' => '</div></div>',
'before_title' => '<div class="sidebar_title">',
'after_title' => '</div><div class="side_content">',
));
當你要分配之前或之後欄應該怎樣來這通常是有幫助的。
例如,我創建使用斯塔克的主題一個主題,這裏是所有東西出現在我的functions.php
文件:
<?php
if (function_exists('register_sidebar'))
register_sidebar(array(
'before_widget' => '<div class="side">',
'after_widget' => '</div></div>',
'before_title' => '<div class="sidebar_title">',
'after_title' => '</div><div class="side_content">',
));
// add thumbnail support to theme, options will be automatically visible in admin
if (function_exists('add_theme_support')) add_theme_support('post-thumbnails');
?>
感謝Sarfraz。我只是想知道,如果可能的話,因爲我是WordPress的新手,如果我可以直接通過查詢向你發送電子郵件,以便獲得我的第一個主題,那麼它會好嗎?如果可以,請在您的網站與您聯繫。謝謝。 – tonyf 2010-08-15 23:32:02