query( $wpdb->prepare( 'UPDATE ' . $wpdb->postmeta . ' SET meta_key = %s WHERE meta_key = "yst_prominent_words_version"', self::POST_META_NAME ) ); } /** * Removes the meta key for the prominent words version for the unsupported languages that might have this value * set. * * @return void */ public static function upgrade_4_8() { $supported_languages = [ 'en', 'de', 'nl', 'es', 'fr', 'it', 'pt', 'ru', 'pl', 'sv', 'id' ]; if ( in_array( WPSEO_Language_Utils::get_language( get_locale() ), $supported_languages, true ) ) { return; } global $wpdb; // The remove all post metas. $wpdb->query( $wpdb->prepare( 'DELETE FROM ' . $wpdb->postmeta . ' WHERE meta_key = %s', self::POST_META_NAME ) ); } }