mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/trunk@1843 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
44 lines
1.5 KiB
PHP
44 lines
1.5 KiB
PHP
<?php get_header(); ?>
|
|
|
|
<div id="content">
|
|
|
|
<?php do_action( 'bp_before_home' ) ?>
|
|
|
|
<div id="first-section" class="widget-section">
|
|
<?php if ( !function_exists('dynamic_sidebar')
|
|
|| !dynamic_sidebar('third-section') ) : ?>
|
|
|
|
<div class="widget-error">
|
|
<?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&show=&sidebar=third-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<div id="second-section" class="widget-section">
|
|
<?php if ( !function_exists('dynamic_sidebar')
|
|
|| !dynamic_sidebar('second-section') ) : ?>
|
|
|
|
<div class="widget-error">
|
|
<?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&show=&sidebar=second-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<div id="third-section" class="widget-section">
|
|
<?php if ( !function_exists('dynamic_sidebar')
|
|
|| !dynamic_sidebar('first-section') ) : ?>
|
|
|
|
<div class="widget-error">
|
|
<?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&show=&sidebar=first-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<?php do_action( 'bp_after_home' ) ?>
|
|
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|