php - WP touch widgets -
php - WP touch widgets -
hi guys i'm using wp touch develop mobile wordpress site, when seek dynamic_sidebar('sidebar')
homecoming false
in main theme can utilize widgets, want them available in wp touch thought if can done?
wordpress couldn't find sidebar
sidebar on mobile theme because it's not defined in mobile themes functions.php
(in wp-content/plugins/wptouch/themes/themename/)
.
so have add together :
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>' )); }
php html ios wordpress
Comments
Post a Comment