akashop/volumes/wp/wp-content/themes/neve/sidebar.php

17 lines
306 B
PHP
Raw Permalink Normal View History

2024-03-20 07:48:21 +00:00
<?php
/**
* The Sidebar containing the main widget areas.
*
* @package Neve
*/
if ( ! is_active_sidebar( 'blog-sidebar' ) ) {
return;
} ?>
<div class="nv-blog-sidebar">
<aside id="secondary" class="blog-sidebar" role="complementary">
<?php dynamic_sidebar( 'blog-sidebar' ); ?>
</aside>
</div>