Changeset 7569 for trunk/bp-loader.php
- Timestamp:
- 11/13/2013 02:47:20 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-loader.php
r7551 r7569 525 525 526 526 /** 527 * Setup the BuddyPress theme directory 528 * 529 * @since BuddyPress (1.5) 530 * @todo Move bp-default to wordpress.org/extend/themes and remove this 527 * Set up BuddyPress's legacy theme directory. 528 * 529 * Starting with version 1.2, and ending with version 1.8, BuddyPress 530 * registered a custom theme directory - bp-themes - which contained 531 * the bp-default theme. Since BuddyPress 1.9, bp-themes is no longer 532 * registered (and bp-default no longer offered) on new installations. 533 * Sites using bp-default (or a child theme of bp-default) will 534 * continue to have bp-themes registered as before. 535 * 536 * @since BuddyPress (1.5.0) 537 * 538 * @todo Move bp-default to wordpress.org/extend/themes and remove this. 531 539 */ 532 540 public function register_theme_directory() { 541 if ( ! bp_do_register_theme_directory() ) { 542 return; 543 } 544 533 545 register_theme_directory( $this->old_themes_dir ); 534 546 }
Note: See TracChangeset
for help on using the changeset viewer.