ms_file_constants [ WordPress Function ]
ms_file_constants ( No parameters )
| Defined at: |
|
Benzer Fonksiyonlar: ms_cookie_constants, ms_upload_constants, wp_ssl_constants, wp_cookie_constants, ms_subdomain_constants
Defines Multisite file constants.
Source
<?php
function ms_file_constants( ) {
/**
* Optional support for X-Sendfile header
* @since 3.0.0
*/
if ( !defined( 'WPMU_SENDFILE' ) )
define( 'WPMU_SENDFILE', false );
/**
* Optional support for X-Accel-Redirect header
* @since 3.0.0
*/
if ( !defined( 'WPMU_ACCEL_REDIRECT' ) )
define( 'WPMU_ACCEL_REDIRECT', false );
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- ms-default-constants.php - Detail view - PHP Cross Reference ...
Jun 1, 2011 ... ms_file_constants() ms_subdomain_constants(). Functions. Functions that are not ... ms_file_constants( ) X-Ref. Defines Multisite file constants.
xref.yoast.com - <?php /** * Defines constants and global variables that can be ...
$current_site->domain); } } /** * Defines Multisite file constants. * * @since 3.0.0 */ function ms_file_constants( ) { /** * Optional support for X-Sendfile header ...
core.svn.wordpress.org - <?php /** * Multisite upload handler. * * @since 3.0.0 * * @package ...
'/wp-load.php' ); if( !is_multisite() ) die( 'Multisite support not enabled' ); ms_file_constants(); error_reporting( 0 ); if ( $current_blog->archived == '1' ...
core.svn.wordpress.org - Thesis customizations I like | Claus Conrad
May 17, 2010 ... ms_file_constants(); error_reporting( 0 ); if ( $current_blog->archived == '1' || $ current_blog->spam == '1' || $current_blog->deleted == '1' ) { ...
www.clausconrad.com