查看wp_cookie_constants()
和ms_cookie_constants()
函数,以查看可用的Cookie。
我们可以在wp-config.php
文件:
// Here we just simulate how it\'s done in the core
define( \'COOKIEHASH\', md5( \'http://example.tld\' ) );
// Then we override the cookie names:
define( \'USER_COOKIE\', \'wpse_user_\' . COOKIEHASH );
define( \'PASS_COOKIE\', \'wpse_pass_\' . COOKIEHASH );
define( \'AUTH_COOKIE\', \'wpse_\' . COOKIEHASH );
define( \'SECURE_AUTH_COOKIE\', \'wpse_sec_\' . COOKIEHASH );
define( \'LOGGED_IN_COOKIE\', \'wpse_logged_in_\' . COOKIEHASH );
define( \'TEST_COOKIE\', \'wpse_test_cookie\' );
或使用PHP 5.6+:
// Then we override the cookie names:
const USER_COOKIE = \'wpse_user_\' . COOKIEHASH;
const PASS_COOKIE = \'wpse_pass_\' . COOKIEHASH;
const AUTH_COOKIE = \'wpse_\' . COOKIEHASH;
const SECURE_AUTH_COOKIE = \'wpse_sec_\' . COOKIEHASH;
const LOGGED_IN_COOKIE = \'wpse_logged_in_\' . COOKIEHASH;
const TEST_COOKIE = \'wpse_test_cookie\';
我们必须调整网站url的位置
http://example.tld
满足我们的需求。
但我也想知道,作为“PieterGoosen”,为什么你需要改变它。