Adding Sidebars
This is my first post and I really hope you guys are able to help. I have been trying to add more sidebars to the functions.php and have been successful until now. I havnt changed the way I do it and it was working fine.
Example:
register_sidebar(array(
'name' => 'PagesSidebar13',
'description' => esc_html__('A widget area, used as a sidebar for the Page Template 13.', 'qualifire'),
'before_widget' => '<div id="%1$s" class="widget %2$s substitute_widget_class">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
));
register_sidebar(array(
'name' => 'PagesSidebar14',
'description' => esc_html__('A widget area, used as a sidebar for the Page Template 14.', 'qualifire'),
'before_widget' => '<div id="%1$s" class="widget %2$s substitute_widget_class">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
));
I created the page-PageTemplate14.php and the sidebar-PagesSidebar14.php
and 14 won't show but 13 does.
DRIVING ME NUTS
any suggestions?