From 438a68a1fef1175917e4a0bd196a054821f1fed4 Mon Sep 17 00:00:00 2001 From: Malcolm Gin Date: Tue, 10 Oct 2017 12:21:30 -0700 Subject: [PATCH] Updated with Automattic's suggestion Commented add_filter line, with context, after testing WP to ensure it would still load and not observing any adverse effects. --- functions.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/functions.php b/functions.php index 966dcd8..b98f0f1 100644 --- a/functions.php +++ b/functions.php @@ -5642,3 +5642,10 @@ function wp_cache_get_last_changed( $group ) { return $last_changed; } + +/** + * Remove Jetpack's dashboard ads + * E.g. for services like VaultPress, etc. + * Suggested by Automattic, Inc. support 2017-10-10 + */ +add_filter( 'jetpack_just_in_time_msgs', '__return_false', 99 );