Changeset 7352 for trunk/bp-blogs/bp-blogs-loader.php
- Timestamp:
- 08/23/2013 08:55:12 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs/bp-blogs-loader.php
r7347 r7352 145 145 146 146 /** 147 * Blog/post/comment menus should not appear on single WordPress setups.147 * Site/post/comment menus should not appear on single WordPress setups. 148 148 * Although comments and posts made by users will still show on their 149 149 * activity stream. … … 157 157 $blogs_link = trailingslashit( bp_loggedin_user_domain() . $this->slug ); 158 158 159 // Add the " Blogs" sub menu159 // Add the "Sites" sub menu 160 160 $wp_admin_nav[] = array( 161 161 'parent' => $bp->my_account_menu_id, … … 165 165 ); 166 166 167 // My Blogs167 // My Sites 168 168 $wp_admin_nav[] = array( 169 169 'parent' => 'my-account-' . $this->id, … … 173 173 ); 174 174 175 // Create a Blog175 // Create a Site 176 176 if ( bp_blog_signup_enabled() ) { 177 177 $wp_admin_nav[] = array( 178 178 'parent' => 'my-account-' . $this->id, 179 179 'id' => 'my-account-' . $this->id . '-create', 180 'title' => __( 'Create a Blog', 'buddypress' ),180 'title' => __( 'Create a Site', 'buddypress' ), 181 181 'href' => trailingslashit( bp_get_blogs_directory_permalink() . 'create' ) 182 182 ); … … 193 193 $bp = buddypress(); 194 194 195 // Set up the component options navigation for Blog195 // Set up the component options navigation for Site 196 196 if ( bp_is_blogs_component() ) { 197 197 if ( bp_is_my_profile() ) {
Note: See TracChangeset
for help on using the changeset viewer.