Current File : /home/smartravaldo/web/smartravaldo.ro/public_html/wp-content/themes/cardealer/sidebar.php
<?php
/**
 * The sidebar containing the main widget area
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package CarDealer
 */

if ( is_active_sidebar( 'sidebar-default' ) ) {
	dynamic_sidebar( 'sidebar-default' );
} else {
	if ( current_user_can( 'administrator' ) ) {
		?>
		<span>
		<?php
		echo sprintf(
			wp_kses(
				/* translators: 1: URL */
				__( 'No widgets added in default sidebar.<br>Click <a href="%s">here</a> to add widgets.', 'cardealer' ),
				array(
					'a'  => array(
						'class' => array(),
						'href'  => array(),
					),
					'br' => array(),
				)
			),
			esc_url( admin_url( 'widgets.php' ) )
		);
		?>
		</span>
		<?php
	} else {
		echo esc_html__( 'No widgets founds.', 'cardealer' );
	}
}