Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bulion

    (@bulion)

    thank’s. i will try it or find another theme…

    Thread Starter bulion

    (@bulion)

    checked. Nothing Was found.

    Only Functions.php

    <?php
    if ( function_exists('register_sidebar') )
        register_sidebar(array(
        	'name' => 'Sidebar Left',
            'before_widget' => '',
            'after_widget' => '',
            'before_title' => '<h3>',
            'after_title' => '</h3>',
        ));
        register_sidebar(array(
        	'name' => 'Sidebar Right',
            'before_widget' => '',
            'after_widget' => '',
            'before_title' => '<h3>',
            'after_title' => '</h3>',
        ));
    ?>

    sidebar.php:

    <!-- Sidebar -->
    		<div class="sidebar">
    
    			<h3>Pages</h3>
    
    <ul>
    				<?php wp_list_pages('title_li='); ?>
    			</ul>
    			<h3>Archives</h3>
    
    <ul>
    				<?php wp_get_archives('type=monthly'); ?>
    			</ul>
    			<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
    
    			<?php endif; ?>
    
    		</div>
    		<!-- Sidebar -->

    i’m lost… 🙁 but thankU for getting some help!

    Thread Starter bulion

    (@bulion)

    In widgets admin i can choose: left sidebar and right sidebar.
    Both are clear. No widgets added to any of them…

Viewing 3 replies - 1 through 3 (of 3 total)