summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-options.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-05-15 17:43:29 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-05-15 17:43:29 +0000
commit6eac4cdfd4ce70d0a2cbb37ab9369b0f8b6dfc48 (patch)
tree0b06bd4dfd7bd9c610a5f635ca2826be35807760 /wp-admin/wpmu-options.php
parent5dbc4a0b5bbf235830a38b2cfab07c46a7a9c2eb (diff)
downloadwordpress-mu-6eac4cdfd4ce70d0a2cbb37ab9369b0f8b6dfc48.tar.gz
wordpress-mu-6eac4cdfd4ce70d0a2cbb37ab9369b0f8b6dfc48.tar.xz
wordpress-mu-6eac4cdfd4ce70d0a2cbb37ab9369b0f8b6dfc48.zip
Admin Notice Feed allows the site_admin to display a feed to all blogs on an MU site. Esp. useful for an announcements blog.
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1292 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/wpmu-options.php')
-rw-r--r--wp-admin/wpmu-options.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/wp-admin/wpmu-options.php b/wp-admin/wpmu-options.php
index 6466071..720c100 100644
--- a/wp-admin/wpmu-options.php
+++ b/wp-admin/wpmu-options.php
@@ -130,6 +130,13 @@ if (isset($_GET['updated'])) {
<th scope="row"><?php _e('Max upload file size') ?></th>
<td><input name="fileupload_maxk" type="text" id="fileupload_maxk" value="<?php echo get_site_option('fileupload_maxk', 300) ?>" size="5" /> KB</td>
</tr>
+ <tr valign="top">
+ <th scope="row"><?php _e('Admin Notice Feed') ?></th>
+ <td><input name="admin_notice_feed" style="width: 95%" type="text" id="admin_notice_feed" value="<?php echo get_site_option( 'admin_notice_feed' ) ?>" size="80" /><br />
+ <?php _e( 'Display the latest post from this RSS or Atom feed on all blog dashboards. Leave blank to disable.' ); ?><br />
+ <?php if( get_site_option( 'admin_notice_feed' ) != 'http://' . $current_site->domain . $current_site->path . 'feed/' )
+ echo __( "A good one to use would be the feed from your main blog: " ) . 'http://' . $current_site->domain . $current_site->path . 'feed/'; ?></td>
+ </tr>
</table>
<h3><?php _e('Administration Settings') ?></h3>