• Hello,
    I created a new custom sidebar and its own php file. Everything is working fine but instead of the new custom sidebr, the usual default sidebar is showing. Any idea why it could be so?
    Here is the code I am using for the new sidebar –
    <?php
    /*
    Template Name: English Jobs Sidebar
    */

    get_header(); ?>

    <div id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role=”main”>

    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( ‘template-parts/content’, ‘page’ ); ?>

    <?php
    // If comments are open or we have at least one comment, load up the comment template
    if ( comments_open() || get_comments_number() ) :
    comments_template();
    endif;
    ?>

    <?php endwhile; // end of the loop. ?>

    </main><!– #main –>
    </div><!– #primary –>

    <?php get_sidebar(‘new page sidebar’, $text_domain); ?>
    <?php get_footer(); ?>

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Custom sidebar not working.’ is closed to new replies.