Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Plugins
    In reply to: How to make 2nd sidebar?
    ezgn

    (@ezgn)

    and call

    get_sidebar-2();

    where u want

    Forum: Plugins
    In reply to: How to make 2nd sidebar?
    ezgn

    (@ezgn)

    try this
    create sidebar-2.php
    add this function in /wp-includes/general-template.php
    ///////////////////////////////////
    function get_sidebar-2() {
    do_action( ‘get_sidebar’ );
    if ( file_exists( TEMPLATEPATH . ‘/sidebar-2.php’) )
    load_template( TEMPLATEPATH . ‘/sidebar-2.php’);
    else
    load_template( ABSPATH . ‘wp-content/themes/default/sidebar.php’);
    }
    //////////////////////////////////

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