10 lines
438 B
PHP
10 lines
438 B
PHP
|
|
<?php if( ! substr_count( $_SERVER['REQUEST_URI'], '/' . bp_get_members_root_slug() ) && ! substr_count( $_SERVER['REQUEST_URI'], '/' . bp_get_groups_root_slug() ) && ! in_array( 'bp-profile', apply_filters( 'body_class', 'a-class' ) ) && ! in_array( 'bp-plugin', apply_filters( 'body_class', 'a-class' ) ) ) : ?>
|
|
|
|
<div id="sidebar-blog">
|
|
|
|
<?php dynamic_sidebar( 'sidebar-blog' ) ?>
|
|
|
|
</div><!-- #sidebar-blog -->
|
|
|
|
<?php endif ?>
|