大家好我正在使用wp touch来开发一个移动wordpress网站,但是当我尝试做dynamic_sidebar('sidebar')
这样的事情时它在主题中返回false
我可以使用小部件,但我想要如果可以的话,他们也可以用wp触摸任何想法吗?
答案 0 :(得分:1)
WOrdpress在您的移动主题上找不到sidebar
侧边栏,因为它未在您的移动主题functions.php
中定义(wp-content/plugins/wptouch/themes/THEMENAME/)
。
所以你必须添加这个:
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' => 'Sidebar',
'id' => 'sidebar',
'before_widget' => '<div class="sidepanel">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>'
));
}