mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2026-01-07 01:45:47 +00:00
9 lines
299 B
PHP
9 lines
299 B
PHP
<?php
|
|
if ( ( is_single() || is_page() ) && 'et_full_width_page' === get_post_meta( get_the_ID(), '_et_pb_page_layout', true ) )
|
|
return;
|
|
|
|
if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
|
|
<div id="sidebar">
|
|
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
|
</div> <!-- end #sidebar -->
|
|
<?php endif; ?>
|