Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/23/2013 08:55:12 PM (12 years ago)
Author:
boonebgorges
Message:

Replace mentions of 'blog' with 'site' throughout

This brings us into line with WP's terminology.

Fixes #5006

Props trishasalas

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-blogs/bp-blogs-loader.php

    r7347 r7352  
    145145
    146146        /**
    147          * Blog/post/comment menus should not appear on single WordPress setups.
     147         * Site/post/comment menus should not appear on single WordPress setups.
    148148         * Although comments and posts made by users will still show on their
    149149         * activity stream.
     
    157157            $blogs_link = trailingslashit( bp_loggedin_user_domain() . $this->slug );
    158158
    159             // Add the "Blogs" sub menu
     159            // Add the "Sites" sub menu
    160160            $wp_admin_nav[] = array(
    161161                'parent' => $bp->my_account_menu_id,
     
    165165            );
    166166
    167             // My Blogs
     167            // My Sites
    168168            $wp_admin_nav[] = array(
    169169                'parent' => 'my-account-' . $this->id,
     
    173173            );
    174174
    175             // Create a Blog
     175            // Create a Site
    176176            if ( bp_blog_signup_enabled() ) {
    177177                $wp_admin_nav[] = array(
    178178                    'parent' => 'my-account-' . $this->id,
    179179                    'id'     => 'my-account-' . $this->id . '-create',
    180                     'title'  => __( 'Create a Blog', 'buddypress' ),
     180                    'title'  => __( 'Create a Site', 'buddypress' ),
    181181                    'href'   => trailingslashit( bp_get_blogs_directory_permalink() . 'create' )
    182182                );
     
    193193        $bp = buddypress();
    194194
    195         // Set up the component options navigation for Blog
     195        // Set up the component options navigation for Site
    196196        if ( bp_is_blogs_component() ) {
    197197            if ( bp_is_my_profile() ) {
Note: See TracChangeset for help on using the changeset viewer.