Changeset 841548
- Timestamp:
- 01/20/2014 04:06:17 AM (12 years ago)
- Location:
- reorder-my-sites/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
reorder-my-sites.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
reorder-my-sites/trunk/readme.txt
r497436 r841548 3 3 Tags: wordpress, multisite, wpmu, blogs, sites, my sites, dashboard, reorder, order 4 4 Requires at least: 3.3 5 Tested up to: 3. 3.15 Tested up to: 3.8 6 6 Stable tag: trunk 7 7 … … 19 19 == Changelog == 20 20 21 = 1.1 = 22 * Fix for case-sensitive alphabetizing: http://wordpress.org/support/topic/fixed-a-z-ordering 23 21 24 = 1.0 = 22 25 * Initial release -
reorder-my-sites/trunk/reorder-my-sites.php
r497436 r841548 5 5 Description: Reorders the My Sites dropdown menu in the Admin Bar alphabetically. It keeps the main blog at the top. 6 6 Author: ericjuden 7 Version: 1. 07 Version: 1.1 8 8 Author URI: http://www.judenware.com 9 9 Network: true … … 23 23 $sites = $wp_admin_bar->user->blogs; 24 24 foreach($sites as $site_id=>$site){ 25 $blog_names[$site_id] = $site->blogname;25 $blog_names[$site_id] = strtoupper($site->blogname); 26 26 } 27 27
Note: See TracChangeset
for help on using the changeset viewer.