ms_cookie_constants

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!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: