22 lines
589 B
PHP
22 lines
589 B
PHP
<?php
|
|
/**
|
|
* The sidebar containing the main widget area.
|
|
*
|
|
* Fixed: each widget is wrapped by the correct Bulma card structure
|
|
* registered in functions.php (before_widget / after_widget).
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
*
|
|
* @package CyyWordpress
|
|
*/
|
|
|
|
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
|
|
return;
|
|
}
|
|
?>
|
|
|
|
<aside id="secondary" class="widget-area column is-3" role="complementary" aria-label="<?php esc_attr_e( '侧边栏', 'cyywordpress' ); ?>">
|
|
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
|
</aside><!-- #secondary -->
|
|
|