File: /var/www/ruwebsiteok/wp-content/themes/interactive-education/sidebar.php
<?php
/**
* The primary widget space in the sidebar
*
* @package Interactive Education
*/
?>
<?php
if ( is_active_sidebar( 'sidebar-1' )) { ?>
<div id="secondary" class="sidebar left-sidebar">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div>
<?php } else { ?>
<div id="search-2" class="widget widget_search">
<div class="widget-title-wrap"><h2 class="widget-title"><?php esc_html_e('Search Here', 'interactive-education'); ?></h2></div>
<?php get_search_form(); ?>
</div>
<div id="recent-posts-2" class="widget widget_recent_entries">
<div class="widget-title-wrap"><h2 class="widget-title"><?php esc_html_e('Recent Posts', 'interactive-education'); ?></h2></div>
<ul>
<?php
$interactive_education_recent_posts = wp_get_recent_posts(array(
'numberposts' => 5,
'post_status' => 'publish',
));
foreach ($interactive_education_recent_posts as $interactive_education_post) :
?>
<li>
<a href="<?php echo get_permalink($interactive_education_post['ID']); ?>">
<?php echo esc_html($interactive_education_post['post_title']); ?>
</a>
</li>
<?php endforeach;
?>
</ul>
</div>
<div id="recent-comments-2" class="widget widget_recent_comments">
<div class="widget-title-wrap"><h2 class="widget-title"><?php esc_html_e('Recent Comments', 'interactive-education'); ?></h2></div>
<ul>
<?php
$interactive_education_comments = get_comments(array(
'number' => 5,
'status' => 'approve',
));
foreach ($interactive_education_comments as $interactive_education_comment) {
$post_title = get_the_title($interactive_education_comment->comment_post_ID);
echo '<li class="recentcomments"><span class="comment-author-link"><a href="' . esc_url(get_comment_author_url($interactive_education_comment->comment_ID)) . '" class="url" rel="ugc external nofollow">' . esc_html($interactive_education_comment->comment_author) . '</a></span> on <a href="' . esc_url(get_comment_link($interactive_education_comment->comment_ID)) . '">' . esc_html($post_title) . '</a></li>';
}
?>
</ul>
</div>
<div id="archives-3" class="widget widget_archive">
<div class="widget-title-wrap"><h2 class="widget-title"><?php esc_html_e('Archives', 'interactive-education'); ?></h2></div>
<ul>
<?php
wp_get_archives(array(
'type' => 'monthly',
'format' => 'html',
'show_post_count' => true,
));
?>
</ul>
</div>
<div id="categories-3" class="widget widget_categories">
<div class="widget-title-wrap"><h2 class="widget-title"><?php esc_html_e('Categories', 'interactive-education'); ?></h2></div>
<ul>
<?php
wp_list_categories(array(
'title_li' => '',
'show_count' => true,
));
?>
</ul>
</div>
<?php } ?>