Arkadaşlar problemi çözdüm. Wordpress sitenizde beni hatırla seçeneği çalışmıyorsa sitenizin çerezleri tutma özelliği aktif değildir. Bunu aktif etmek için temanızın functions.php dosyasının en altına aşağıdaki kodları eklemeniz yeterlidir.

add_action('init', 'my_setcookie');// my_setcookie() set the cookie on the domain and directory WP is installed onfunction my_setcookie(){  $path = parse_url(get_option('siteurl'), PHP_URL_PATH);  $host = parse_url(get_option('siteurl'), PHP_URL_HOST);  $expiry = strtotime('+1 month');  setcookie('my_cookie_name_1', 'my_cookie_value_1', $expiry, $path, $host);  /* more cookies */  setcookie('my_cookie_name_2', 'my_cookie_value_2', $expiry, $path, $host);}