Activity Stream
48,167 MEMBERS
6953 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 2 of 2

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1.     
    #1
    Banned
    Website's:
    MediaFireFILMY.com MediaMovies.Net

    Red face [help] How to add an extra Sidebar in my theme using a plugin?

    is it possible to do?
    If yes,then plz share the plugin name..

    In my current theme,there is only 1 Sidebar(in right)...I want to add an extra sidebar in Left position.

    plz help me out.

    thanks in advance
    soum111 Reviewed by soum111 on . [help] How to add an extra Sidebar in my theme using a plugin? is it possible to do? If yes,then plz share the plugin name.. In my current theme,there is only 1 Sidebar(in right)...I want to add an extra sidebar in Left position. plz help me out. thanks in advance Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    anadesigns.net
    No need for a plugin. You can register another sidebar in your theme's functions.php file. Try this...

    Add this chunk of code:

    Code: 
    /* register sidebar widget area */
    function yourtheme_widgets_init() {
        register_sidebar( array(
        'name' => __( 'Secondary Widget Area', 'yourtheme' ),
        'id' => 'secondary-widget-area',
        'description' => __( 'New secondary widget area', 'yourtheme' ),
        'before_widget' => '<ul><li id="%1$s" class="%2$s">',
        'after_widget' => '</li></ul>',
        'before_title' => '<h3 class="widget-title">',
        'after_title' => '</h3>',
        ) );
    
    }
    add_action( 'widgets_init', 'yourtheme_widgets_init' );
    Then stick this in sidebar.php:

    Code: 
    <?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('secondary-widget-area')) : ?>
    <?php endif; ?>

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Left Sidebar or Right Sidebar
    By EsotorisK in forum Polling Plaza
    Replies: 18
    Last Post: 29th Jun 2012, 03:02 AM
  2. Any Theme or plugin ?
    By m107 in forum Wordpress
    Replies: 4
    Last Post: 26th Feb 2012, 10:55 PM
  3. Calendar theme or plugin
    By usb3 in forum Wordpress
    Replies: 1
    Last Post: 21st Feb 2012, 09:25 PM
  4. is there any theme or plugin for contest
    By xmadox in forum Wordpress
    Replies: 0
    Last Post: 10th Feb 2012, 08:34 PM
  5. Move sidebar in WP theme please
    By Cid in forum Tutorials and Guides
    Replies: 9
    Last Post: 15th Nov 2011, 05:40 PM

Tags for this Thread

BE SOCIAL