Re: How to Hard Code Custom Sidebar Code Into A Specific Sidebar
I just did this:
<div id="sidebar">
<?php do_action( 'bp_inside_before_blog_sidebar' ) ?>
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('blog-sidebar') ) : ?>
<?php wp_list_categories( ); ?>
<li id="archives"><?php _e('Archives:'); ?>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<?php endif; ?>
<?php do_action( 'bp_inside_after_blog_sidebar' ) ?>
</div>
and feel pretty cool, cuz it affected:
http://community.urine-therapy.org/testing/
But, I thought I was going to affect, and the theme I’m trying to change is this one:
http://community.urine-therapy.org/testing2/
…so I guess that orange theme does not use my created
bp-sn-parent-members
huh…
Sheesh, where is that file dernit?