File: /home/web.paitoan.com/public_html/wp-content/themes/frontier/sidebar-right.php
<div id="sidebar-right" class="sidebar cf" <?php frontier_schema( 'sidebar' ); ?> role="complementary" aria-label="<?php _e( 'Sidebar Right', 'frontier' ); ?>">
<?php do_action( 'frontier_before_sidebar_right' ); ?>
<aside id="widgets-wrap-sidebar-right">
<?php if ( is_active_sidebar( 'widgets_sidebar_right' ) ) : ?>
<?php dynamic_sidebar( 'widgets_sidebar_right' ); ?>
<?php else : ?>
<?php
the_widget( 'WP_Widget_Search', 'title=The Search Box', array(
'before_widget' => '<section class="widget-sidebar frontier-widget widget_search">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title" >',
'after_title' => '</h2>'
) );
the_widget( 'WP_Widget_Recent_Posts', 1, array(
'before_widget' => '<section class="widget-sidebar frontier-widget widget_recent_entries">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title" >',
'after_title' => '</h2>'
) );
the_widget( 'WP_Widget_Recent_Comments', 1, array(
'before_widget' => '<section class="widget-sidebar frontier-widget widget_recent_comments">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title" >',
'after_title' => '</h2>'
) );
the_widget( 'WP_Widget_Meta', 1, array(
'before_widget' => '<section class="widget-sidebar frontier-widget widget_meta">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title" >',
'after_title' => '</h2>'
) );
?>
<?php endif; ?>
</aside>
<?php do_action( 'frontier_after_sidebar_right' ); ?>
</div>