HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/www/theselfmasterybookclub.com/wp-content/themes/legacy-book-club/sidebar.php
<?php
/**
 * The sidebar containing the main widget area.
 *
 * @package Legacy Book Club
 */


?>

<aside id="secondary" class="widget-area" role="complementary">
	<?php dynamic_sidebar( 'primary-sidebar' ); ?>
</aside><!-- #secondary -->

<?php if ( ! is_active_sidebar( 'primary-sidebar' ) ) { ?>

	<aside id="secondary" class="widget-area" role="complementary">
		<!-- Search -->
		<aside id="search-3" class="widget widget_search">
			<h2 class="widget-title"><?php esc_html_e('Search Here', 'legacy-book-club'); ?></h2>
			<?php get_search_form(); ?>
		</aside>
		<!-- Categories -->
		<aside id="categories" class="widget widget_categories" role="complementary" aria-label="<?php esc_attr_e( 'secondsidebar', 'legacy-book-club' ); ?>">
		    <h2 class="widget-title"><?php esc_html_e('Categories', 'legacy-book-club'); ?></h2>
		    <ul>
		        <?php
		        $args = array(
		            'title_li' => '',
		        );
		        wp_list_categories($args);
		        ?>
		    </ul>
		</aside>
		<!-- Archive -->
		<aside id="archive" class="widget widget_archive" role="complementary" aria-label="<?php esc_attr_e( 'secondsidebar', 'legacy-book-club' ); ?>">
		    <h2 class="widget-title"><?php esc_html_e('Archive List', 'legacy-book-club'); ?></h2>
		    <ul>
		        <?php wp_get_archives('type=monthly'); ?>
		    </ul>
		</aside>
		<!-- Tag Sidebar -->
		<aside id="tag-sidebar" class="widget widget_tag_cloud" role="complementary" aria-label="<?php esc_attr_e( 'thirdsidebar', 'legacy-book-club' ); ?>">
		    <h2 class="widget-title"><?php esc_html_e('Popular Tags', 'legacy-book-club'); ?></h2>
		    <div class="tagcloud">
		        <?php
		        $legacy_book_club_tags = get_tags(array(
		            'orderby' => 'count',
		            'order'   => 'DESC',
		            'number'  => 20, // You can change the number of tags displayed
		        ));

		        if ($legacy_book_club_tags) {
		            foreach ($legacy_book_club_tags as $legacy_book_club_tag) {
		                $legacy_book_club_tag_link = get_tag_link($legacy_book_club_tag->term_id);
		                $legacy_book_club_tag_name = $legacy_book_club_tag->name;
		                $legacy_book_club_tag_count = $legacy_book_club_tag->count;
		                echo '<a href="' . esc_url($legacy_book_club_tag_link) . '" class="tag-link" title="' . esc_attr($legacy_book_club_tag_name) . ' (' . $legacy_book_club_tag_count . ' posts)">' . esc_html($legacy_book_club_tag_name) . '</a> ';
		            }
		        } else {
		            echo '<p>' . esc_html__('No tags found.', 'legacy-book-club') . '</p>';
		        }
		        ?>
		    </div>
		</aside>	
	</aside>

<?php } ?>