Update wordpress.org blog url
git-svn-id: http://svn.automattic.com/wordpress/trunk@15457 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a0289e8ce8
commit
a67155f514
|
@ -70,7 +70,7 @@
|
|||
<dl>
|
||||
<dt><a href="http://codex.wordpress.org/">The WordPress Codex</a></dt>
|
||||
<dd>The Codex is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||
<dt><a href="http://wordpress.org/development/">The WordPress Blog</a></dt>
|
||||
<dt><a href="http://wordpress.org/news/">The WordPress Blog</a></dt>
|
||||
<dd>This is where you'll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
|
||||
<dt><a href="http://planet.wordpress.org/">WordPress Planet</a></dt>
|
||||
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||
|
|
|
@ -67,8 +67,8 @@ function wp_dashboard_setup() {
|
|||
if ( !isset( $widget_options['dashboard_primary'] ) ) {
|
||||
$update = true;
|
||||
$widget_options['dashboard_primary'] = array(
|
||||
'link' => apply_filters( 'dashboard_primary_link', __( 'http://wordpress.org/development/' ) ),
|
||||
'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/development/feed/' ) ),
|
||||
'link' => apply_filters( 'dashboard_primary_link', __( 'http://wordpress.org/news/' ) ),
|
||||
'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/news/feed/' ) ),
|
||||
'title' => apply_filters( 'dashboard_primary_title', __( 'WordPress Blog' ) ),
|
||||
'items' => 2,
|
||||
'show_summary' => 1,
|
||||
|
|
|
@ -152,9 +152,9 @@ function wp_install_defaults($user_id) {
|
|||
'link_rss' => '',
|
||||
'link_notes' => '');
|
||||
|
||||
$default_links[] = array( 'link_url' => 'http://wordpress.org/development/',
|
||||
$default_links[] = array( 'link_url' => 'http://wordpress.org/news/',
|
||||
'link_name' => 'WordPress Blog',
|
||||
'link_rss' => 'http://wordpress.org/development/feed/',
|
||||
'link_rss' => 'http://wordpress.org/news/feed/',
|
||||
'link_notes' => '');
|
||||
|
||||
$default_links[] = array( 'link_url' => 'http://wordpress.org/extend/ideas/',
|
||||
|
|
Loading…
Reference in New Issue