summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/module-extras.php')
-rw-r--r--plugins/jetpack/modules/module-extras.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins/jetpack/modules/module-extras.php b/plugins/jetpack/modules/module-extras.php
index b6bacd6f..368cf80b 100644
--- a/plugins/jetpack/modules/module-extras.php
+++ b/plugins/jetpack/modules/module-extras.php
@@ -7,7 +7,6 @@
// Include extra tools that aren't modules, in a filterable way
$tools = array(
'theme-tools/social-links.php',
- 'holiday-snow.php', // Happy Holidays!!!
'theme-tools/random-redirect.php',
'theme-tools/featured-content.php',
'theme-tools/infinite-scroll.php',
@@ -54,3 +53,11 @@ if ( ! empty( $jetpack_tools_to_include ) ) {
}
}
}
+
+/**
+ * Add the "(Jetpack)" suffix to the widget names
+ */
+function jetpack_widgets_add_suffix( $widget_name ) {
+ return sprintf( __( '%s (Jetpack)', 'jetpack' ), $widget_name );
+}
+add_filter( 'jetpack_widget_name', 'jetpack_widgets_add_suffix' ); \ No newline at end of file