Ticket #2177: wp-dashboard-feeds.diff
| File wp-dashboard-feeds.diff, 1.4 kB (added by technosailor, 2 years ago) |
|---|
-
wp-admin/index-extra.php
old new 24 24 break; 25 25 26 26 case 'devnews' : 27 $rss = @fetch_rss( 'http://wordpress.org/development/feed/');27 $rss = @fetch_rss( apply_filters( 'primary_dash_rssurl', 'http://wordpress.org/development/feed/' ) ); 28 28 if ( isset($rss->items) && 0 != count($rss->items) ) { 29 29 ?> 30 <h3><?php _e('WordPress Development Blog'); ?></h3>30 <h3><?php apply_filters('primary_dash_title', __('WordPress Development Blog') ); ?></h3> 31 31 <?php 32 32 $rss->items = array_slice($rss->items, 0, 3); 33 33 foreach ($rss->items as $item ) { … … 43 43 break; 44 44 45 45 case 'planetnews' : 46 $rss = @fetch_rss( 'http://planet.wordpress.org/feed/');46 $rss = @fetch_rss( apply_filters( 'secondary_dash_rssurl', 'http://planet.wordpress.org/feed/' ) ); 47 47 if ( isset($rss->items) && 0 != count($rss->items) ) { 48 48 ?> 49 <h3><?php _e('Other WordPress News'); ?></h3>49 <h3><?php echo apply_filters( 'secondary_dash_title', __('Other WordPress News') ); ?></h3> 50 50 <ul> 51 51 <?php 52 52 $rss->items = array_slice($rss->items, 0, 20); … … 60 60 } 61 61 ?> 62 62 </ul> 63 <p class="readmore"><a href=" http://planet.wordpress.org/"><?php _e('Read more'); ?> »</a></p>63 <p class="readmore"><a href="<?php apply_filters( 'secondary_dash_url', 'http://planet.wordpress.org/' ) ?>"><?php _e('Read more'); ?> »</a></p> 64 64 <?php 65 65 } 66 66 break;
