-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebar.php
More file actions
28 lines (27 loc) · 995 Bytes
/
Copy pathsidebar.php
File metadata and controls
28 lines (27 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
* The sidebar containing the main widget area
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WordPress
* @subpackage Nasio
* @since 1.0
* @version 1.0
*/
if (is_active_sidebar('sidebar-1')): ?>
<aside id="secondary" class="sidebar-wrapper sidebar widget-area>" role="complementary"
aria-label="<?php esc_attr_e('Right Sidebar', 'nasio');?>">
<?php dynamic_sidebar('sidebar-1');?>
</aside><!-- #secondary -->
<?php else: //Starter content in the right sidebar ?>
<aside id="secondary" class="sidebar-wrapper sidebar widget-area>" role="complementary"
aria-label="<?php esc_attr_e('Right Sidebar', 'nasio');?>">
<section id="search-form-2" class="sidebar-box">
<?php get_search_form();?>
</section>
<section id="recent-posts-2" class="sidebar-box">
<?php the_widget('Nasio_Recent_Posts_Widget');?>
</section>
</aside><!-- #secondary -->
<?php endif; // end primary widget area