The site is already connected (registered) sidebar. I need to add a new block with text and links to it. And it is also necessary that this block be displayed only on the main page.
Has registered sidebar3 sidebar3 in functions.php . Created a separate sidebar3.php file:
<div id="left-column"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar3') ) : ?> <?php endif; ?> In home.php indicated the path:
<?php include (TEMPLATEPATH . '/sidebar3.php'); ?> In the admin panel on the page widgets added text and links in the widget Sidebar3. But the sidebar is not displayed. What is not doing right? How to display an additional sidebar, but only on the main page?