Hash cookie
Derivazione
La stringa aggiunta è un hash dell'URL del sito; fai riferimento a Comprensione dei cookie di autenticazione di Wordpress .
1) Cookie ID
What I’m calling the auth “cookie ID” is defined in the file
default-constants.php:
if ( !defined('AUTH_COOKIE') )
define('AUTH_COOKIE', 'wordpress_'.COOKIEHASH);
It’s simply a concatenation of “wordpress_” and a value called
COOKIEHASH which is also defined in the same file:
if ( !defined( 'COOKIEHASH' ) ) {
$siteurl = get_site_option( 'siteurl' );
if ( $siteurl )
define ( 'COOKIEHASH', md5( $siteurl ) );
else
define ( 'COOKIEHASH', '' );
}
As you can see, COOKIEHASH is nothing more than an MD5 of your site’s
URL.
Scopo
Per quanto riguarda il motivo per cui questo è fatto, probabilmente si riferisce a consentire a più siti wordpress di condividere un nome di dominio (con i siti in diverse sottodirectory). Senza un identificatore univoco, i siti continuerebbero a ignorare i rispettivi cookie.