Changeset 51114
- Timestamp:
- 06/08/2021 10:16:03 PM (3 years ago)
- Location:
- trunk/src/wp-includes/widgets
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-archives.php
r50995 r51114 25 25 $widget_ops = array( 26 26 'classname' => 'widget_archive', 27 'description' => __( 'A monthly archive of your site’s Posts.'),27 'description' => html_entity_decode( __( 'A monthly archive of your site’s Posts.' ) ), 28 28 'customize_selective_refresh' => true, 29 29 'show_instance_in_rest' => true, -
trunk/src/wp-includes/widgets/class-wp-widget-meta.php
r50995 r51114 27 27 $widget_ops = array( 28 28 'classname' => 'widget_meta', 29 'description' => __( 'Login, RSS, & WordPress.org links.'),29 'description' => html_entity_decode( __( 'Login, RSS, & WordPress.org links.' ) ), 30 30 'customize_selective_refresh' => true, 31 31 'show_instance_in_rest' => true, -
trunk/src/wp-includes/widgets/class-wp-widget-recent-comments.php
r50995 r51114 25 25 $widget_ops = array( 26 26 'classname' => 'widget_recent_comments', 27 'description' => __( 'Your site’s most recent comments.'),27 'description' => html_entity_decode( __( 'Your site’s most recent comments.' ) ), 28 28 'customize_selective_refresh' => true, 29 29 'show_instance_in_rest' => true, -
trunk/src/wp-includes/widgets/class-wp-widget-recent-posts.php
r50995 r51114 25 25 $widget_ops = array( 26 26 'classname' => 'widget_recent_entries', 27 'description' => __( 'Your site’s most recent Posts.'),27 'description' => html_entity_decode( __( 'Your site’s most recent Posts.' ) ), 28 28 'customize_selective_refresh' => true, 29 29 'show_instance_in_rest' => true,
Note: See TracChangeset
for help on using the changeset viewer.