• File: sidebar.php
  • Full Path: /home/romi/public_html/wp-content-20260417071838/themes/career-portfolio/sidebar.php
  • Date Modified: 04/23/2023 12:07 AM
  • File size: 453 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * The sidebar containing the main widget area
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package Career_Portfolio
 */

$sidebar = apply_filters( 'career_portfolio_get_sidebar', 'sidebar-1' );

if ( is_active_sidebar( $sidebar ) ) : ?>

	<aside id="secondary" class="widget-area-left">
		<?php dynamic_sidebar( $sidebar ); ?>
	</aside><!-- #secondary -->

<?php endif;