mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-06-01 06:04:04 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/trunk@1843 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
18 lines
627 B
PHP
18 lines
627 B
PHP
<?php do_action( 'bp_before_blog_sidebar' ) ?>
|
|
|
|
<div id="sidebar">
|
|
<?php do_action( 'bp_inside_before_blog_sidebar' ) ?>
|
|
|
|
<?php if ( !function_exists('dynamic_sidebar')
|
|
|| !dynamic_sidebar('blog-sidebar') ) : ?>
|
|
|
|
<div class="widget-error">
|
|
<?php _e( 'Please log in and add widgets to this column.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&show=&sidebar=blog-sidebar"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php do_action( 'bp_inside_after_blog_sidebar' ) ?>
|
|
</div>
|
|
|
|
<?php do_action( 'bp_after_blog_sidebar' ) ?>
|