Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,018
- How-to & Troubleshooting
- 129,639
- Creating & Extending
- 25,793
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,791
- Showcase
- 3,316
- Ideas
- 1,382
- Miscellaneous
- 9,179
-
Dear friends, I solved!
I added like you said a functions.php file in my theme, only with this code:
<?php
/* Register my widget 4 column */
register_sidebars( 1,
array(
‘name’ => ‘zero-section’,
‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2 class=”widgettitle”>’,
‘after_title’ => ‘</h2>’
)
);
?>
ciao and thank you for your inputs and your help!
A.