Changeset 36416 for trunk/src/wp-admin/includes/schema.php
- Timestamp:
- 01/28/2016 03:34:02 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/schema.php
r36255 r36416 31 31 * 32 32 * @param string $scope Optional. The tables for which to retrieve SQL. Can be all, global, ms_global, or blog tables. Defaults to all. 33 * @param int $blog_id Optional. The blog ID for which to retrieve SQL. Default is the current blogID.33 * @param int $blog_id Optional. The site ID for which to retrieve SQL. Default is the current site ID. 34 34 * @return string The SQL needed to create the requested tables. 35 35 */ … … 398 398 'home' => $guessurl, 399 399 'blogname' => __('My Site'), 400 /* translators: blogtagline */400 /* translators: site tagline */ 401 401 'blogdescription' => __('Just another WordPress site'), 402 402 'users_can_register' => 0, … … 530 530 // 3.0 multisite 531 531 if ( is_multisite() ) { 532 /* translators: blogtagline */532 /* translators: site tagline */ 533 533 $options[ 'blogdescription' ] = sprintf(__('Just another %s site'), get_current_site()->site_name ); 534 534 $options[ 'permalink_structure' ] = '/%year%/%monthnum%/%day%/%postname%/';
Note: See TracChangeset
for help on using the changeset viewer.