Definition:
function ms_cookie_constants( ) {}
Defines Multisite cookie constants.
Source code
function ms_cookie_constants( ) { global $current_site; /** * @since 1.2.0 */ if ( !defined( 'COOKIEPATH' ) ) define( 'COOKIEPATH', $current_site->path ); /** * @since 1.5.0 */ if ( !defined( 'SITECOOKIEPATH' ) ) define( 'SITECOOKIEPATH', $current_site->path ); /** * @since 2.6.0 */ if ( !defined( 'ADMIN_COOKIE_PATH' ) ) { if( !is_subdomain_install() ) { define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH ); } else { define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . 'wp-admin' ); } } /** * @since 2.0.0 */ if ( !defined('COOKIE_DOMAIN') && is_subdomain_install() ) { if ( !empty( $current_site->cookie_domain ) ) define('COOKIE_DOMAIN', '.' . $current_site->cookie_domain); else define('COOKIE_DOMAIN', '.' . $current_site->domain); } }
2403
No comments yet... Be the first to leave a reply!