wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
ms_file_constants › WordPress Function
Seit3.0.0
Veraltetn/v
› ms_file_constants ( Keine Parameter )
Definiert in: |
|
Codex: |
Defines Multisite file constants.
Exists for backward compatibility with legacy file-serving through wp-includes/ms-files.php (wp-content/blogs.php in MU).Ähnliche Funktionen: ms_cookie_constants, ms_upload_constants, wp_ssl_constants, wp_cookie_constants, ms_subdomain_constants
Quellcode
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 ); } }