response as $updates ) { $url = plugin_dir_url( PLUGIN_FILE ) . 'inc/icons/svg.php'; $url = add_query_arg( 'color', set_random_color(), $url ); $updates->icons['default'] = $url; } return $transient; } /** * Set random color. * * @return string */ function set_random_color() { $rand = str_pad( dechex( wp_rand( 0x000000, 0xFFFFFF ) ), 6, 0, STR_PAD_LEFT ); return $rand; }