This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
cookthebooks-legacy/sidebar-shop.php

23 lines
482 B
PHP

<?php
/**
* The sidebar containing the shop widget area.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package PressBook
*/
if ( ! is_active_sidebar( 'sidebar-shop' ) ) {
return;
}
do_action( 'pressbook_before_shop_sidebar' );
?>
<aside id="secondary" class="widget-area c-sidebar c-sidebar-shop">
<?php dynamic_sidebar( 'sidebar-shop' ); ?>
</aside><!-- #secondary -->
<?php
do_action( 'pressbook_after_shop_sidebar' );