Support » Theme: Pinboard » Is there a reason not setting sidebar ID?

  • Hello,

    Is there a reason that this theme does not set a sidebar ID in the register_sidebar function?

    In functions.php

    register_sidebar(
    		array(
    			'name' => 'Header',
    			'description' => 'Displays in the header. Intended exclusively for displaying ads of standard dimentions.',
    			'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    			'after_widget' => '</aside><!-- .widget -->',
    			'before_title' => '<' . $title_tag . ' class="widget-title">',
    			'after_title' => '</' . $title_tag . '>'
    		)
    	);

    It causes a problem if a third party plugin registers a sidebar before the theme is set up.

    I’d like to know if it is intended.

    Thank you.

  • The topic ‘Is there a reason not setting sidebar ID?’ is closed to new replies.