WP触摸小部件

时间:2012-01-21 22:44:07

标签: php html ios wordpress

大家好我正在使用wp touch来开发一个移动wordpress网站,但是当我尝试做dynamic_sidebar('sidebar')这样的事情时它在主题中返回false我可以使用小部件,但我想要如果可以的话,他们也可以用wp触摸任何想法吗?

1 个答案:

答案 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>'
        ));
}
相关问题