diff --git bp-themes/bp-default/blogs/index.php bp-themes/bp-default/blogs/index.php
index 0b1dbb4..e9ed047 100644
|
|
|
32 | 32 | |
33 | 33 | <div class="item-list-tabs" role="navigation"> |
34 | 34 | <ul> |
35 | | <li class="selected" id="blogs-all"><a href="<?php bp_root_domain(); ?>"><?php printf( __( 'All Sites <span>%s</span>', 'buddypress' ), bp_get_total_blog_count() ); ?></a></li> |
| 35 | <li class="selected" id="blogs-all"><a href="<?php bp_root_domain(); ?>/<?php bp_blogs_root_slug() ?>"><?php printf( __( 'All Sites <span>%s</span>', 'buddypress' ), bp_get_total_blog_count() ); ?></a></li> |
36 | 36 | |
37 | 37 | <?php if ( is_user_logged_in() && bp_get_total_blog_count_for_user( bp_loggedin_user_id() ) ) : ?> |
38 | 38 | |
39 | | <li id="blogs-personal"><a href="<?php echo bp_loggedin_user_domain() . bp_get_blogs_slug() . '/my-blogs/' ?>"><?php printf( __( 'My Sites <span>%s</span>', 'buddypress' ), bp_get_total_blog_count_for_user( bp_loggedin_user_id() ) ); ?></a></li> |
| 39 | <li id="blogs-personal"><a href="<?php echo bp_loggedin_user_domain() . bp_get_blogs_slug() ?>"><?php printf( __( 'My Sites <span>%s</span>', 'buddypress' ), bp_get_total_blog_count_for_user( bp_loggedin_user_id() ) ); ?></a></li> |
40 | 40 | |
41 | 41 | <?php endif; ?> |
42 | 42 | |
… |
… |
|
74 | 74 | <?php do_action( 'bp_directory_blogs_content' ); ?> |
75 | 75 | |
76 | 76 | <?php wp_nonce_field( 'directory_blogs', '_wpnonce-blogs-filter' ); ?> |
77 | | |
| 77 | |
78 | 78 | <?php do_action( 'bp_after_directory_blogs_content' ); ?> |
79 | 79 | |
80 | 80 | </form><!-- #blogs-directory-form --> |