Changeset 14315 for trunk/wp-includes/default-widgets.php
- Timestamp:
- 04/30/2010 03:17:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-widgets.php
r13733 r14315 173 173 174 174 function WP_Widget_Search() { 175 $widget_ops = array('classname' => 'widget_search', 'description' => __( "A search form for your blog") );175 $widget_ops = array('classname' => 'widget_search', 'description' => __( "A search form for your site") ); 176 176 $this->WP_Widget('search', __('Search'), $widget_ops); 177 177 } … … 216 216 217 217 function WP_Widget_Archives() { 218 $widget_ops = array('classname' => 'widget_archive', 'description' => __( 'A monthly archive of your blog’s posts') );218 $widget_ops = array('classname' => 'widget_archive', 'description' => __( 'A monthly archive of your site’s posts') ); 219 219 $this->WP_Widget('archives', __('Archives'), $widget_ops); 220 220 } … … 329 329 330 330 function WP_Widget_Calendar() { 331 $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your blog’s posts') );331 $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your site’s posts') ); 332 332 $this->WP_Widget('calendar', __('Calendar'), $widget_ops); 333 333 } … … 512 512 513 513 function WP_Widget_Recent_Posts() { 514 $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "The most recent posts on your blog") );514 $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "The most recent posts on your site") ); 515 515 $this->WP_Widget('recent-posts', __('Recent Posts'), $widget_ops); 516 516 $this->alt_option_name = 'widget_recent_entries';
Note: See TracChangeset
for help on using the changeset viewer.