File Manager Lite
Dir:
/home/kisafcargoco/public_html/wp-includes
Upload
[..]
ID3/
Rename
Del
IXR/
Rename
Del
PHPMailer/
Rename
Del
Requests/
Rename
Del
SimplePie/
Rename
Del
Text/
Rename
Del
abilities-api/
Rename
Del
assets/
Rename
Del
block-bindings/
Rename
Del
block-patterns/
Rename
Del
block-supports/
Rename
Del
blocks/
Rename
Del
certificates/
Rename
Del
css/
Rename
Del
customize/
Rename
Del
error_log (593 B)
Edit
Rename
Del
fonts/
Rename
Del
functions.php (281.84 KB)
Edit
Rename
Del
functions.wp-scripts.php (14.95 KB)
Edit
Rename
Del
functions.wp-styles.php (8.44 KB)
Edit
Rename
Del
general-template.php (168.95 KB)
Edit
Rename
Del
html-api/
Rename
Del
http.php (25.27 KB)
Edit
Rename
Del
images/
Rename
Del
interactivity-api/
Rename
Del
js/
Rename
Del
kses.php (81.73 KB)
Edit
Rename
Del
l10n/
Rename
Del
l10n.php (67.18 KB)
Edit
Rename
Del
locale.php (162 B)
Edit
Rename
Del
media-template.php (61.72 KB)
Edit
Rename
Del
meta.php (65 KB)
Edit
Rename
Del
ms-default-constants.php (4.81 KB)
Edit
Rename
Del
ms-default-filters.php (6.48 KB)
Edit
Rename
Del
ms-deprecated.php (21.25 KB)
Edit
Rename
Del
ms-files.php (2.79 KB)
Edit
Rename
Del
ms-functions.php (89.69 KB)
Edit
Rename
Del
ms-load.php (19.42 KB)
Edit
Rename
Del
ms-network.php (3.69 KB)
Edit
Rename
Del
ms-settings.php (4.11 KB)
Edit
Rename
Del
ms-site.php (40.74 KB)
Edit
Rename
Del
nav-menu-template.php (25.38 KB)
Edit
Rename
Del
nav-menu.php (43.31 KB)
Edit
Rename
Del
option.php (102.57 KB)
Edit
Rename
Del
php-compat/
Rename
Del
pomo/
Rename
Del
post-formats.php (6.94 KB)
Edit
Rename
Del
post-template.php (67.04 KB)
Edit
Rename
Del
post-thumbnail-template.php (10.62 KB)
Edit
Rename
Del
post.php (289.13 KB)
Edit
Rename
Del
query.php (36.23 KB)
Edit
Rename
Del
registration-functions.php (200 B)
Edit
Rename
Del
registration.php (200 B)
Edit
Rename
Del
rest-api/
Rename
Del
revision.php (30.02 KB)
Edit
Rename
Del
rewrite.php (19.03 KB)
Edit
Rename
Del
robots-template.php (5.06 KB)
Edit
Rename
Del
rss.php (22.66 KB)
Edit
Rename
Del
script-modules.php (9.68 KB)
Edit
Rename
Del
session.php (258 B)
Edit
Rename
Del
sitemaps/
Rename
Del
sitemaps.php (3.16 KB)
Edit
Rename
Del
sodium_compat/
Rename
Del
speculative-loading.php (8.4 KB)
Edit
Rename
Del
spl-autoload-compat.php (441 B)
Edit
Rename
Del
style-engine/
Rename
Del
style-engine.php (7.39 KB)
Edit
Rename
Del
taxonomy.php (172.91 KB)
Edit
Rename
Del
template-canvas.php (544 B)
Edit
Rename
Del
template-loader.php (4.17 KB)
Edit
Rename
Del
template.php (35.97 KB)
Edit
Rename
Del
theme-compat/
Rename
Del
theme-i18n.json (1.69 KB)
Edit
Rename
Del
theme-previews.php (2.84 KB)
Edit
Rename
Del
theme.json (8.71 KB)
Edit
Rename
Del
user.php (173.89 KB)
Edit
Rename
Del
utf8.php (7.09 KB)
Edit
Rename
Del
vars.php (6.41 KB)
Edit
Rename
Del
version.php (1.08 KB)
Edit
Rename
Del
widgets/
Rename
Del
wp-diff.php (799 B)
Edit
Rename
Del
Edit: ms-default-constants.php
<?php /** * Defines constants and global variables that can be overridden, generally in wp-config.php. * * @package WordPress * @subpackage Multisite * @since 3.0.0 */ /** * Defines Multisite upload constants. * * Exists for backward compatibility with legacy file-serving through * wp-includes/ms-files.php (wp-content/blogs.php in MU). * * @since 3.0.0 */ function ms_upload_constants() { // This filter is attached in ms-default-filters.php but that file is not included during SHORTINIT. add_filter( 'default_site_option_ms_files_rewriting', '__return_true' ); if ( ! get_site_option( 'ms_files_rewriting' ) ) { return; } // Base uploads dir relative to ABSPATH. if ( ! defined( 'UPLOADBLOGSDIR' ) ) { define( 'UPLOADBLOGSDIR', 'wp-content/blogs.dir' ); } /* * Note, the main site in a post-MU network uses wp-content/uploads. * This is handled in wp_upload_dir() by ignoring UPLOADS for this case. */ if ( ! defined( 'UPLOADS' ) ) { $site_id = get_current_blog_id(); define( 'UPLOADS', UPLOADBLOGSDIR . '/' . $site_id . '/files/' ); // Uploads dir relative to ABSPATH. if ( 'wp-content/blogs.dir' === UPLOADBLOGSDIR && ! defined( 'BLOGUPLOADDIR' ) ) { define( 'BLOGUPLOADDIR', WP_CONTENT_DIR . '/blogs.dir/' . $site_id . '/files/' ); } } } /** * Defines Multisite cookie constants. * * @since 3.0.0 */ function ms_cookie_constants() { $current_network = get_network(); /** * @since 1.2.0 */ if ( ! defined( 'COOKIEPATH' ) ) { define( 'COOKIEPATH', $current_network->path ); } /** * @since 1.5.0 */ if ( ! defined( 'SITECOOKIEPATH' ) ) { define( 'SITECOOKIEPATH', $current_network->path ); } /** * @since 2.6.0 */ if ( ! defined( 'ADMIN_COOKIE_PATH' ) ) { $site_path = parse_url( get_option( 'siteurl' ), PHP_URL_PATH ); if ( ! is_subdomain_install() || is_string( $site_path ) && trim( $site_path, '/' ) ) { 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_network->cookie_domain ) ) { define( 'COOKIE_DOMAIN', '.' . $current_network->cookie_domain ); } else { define( 'COOKIE_DOMAIN', '.' . $current_network->domain ); } } } /** * Defines Multisite file constants. * * Exists for backward compatibility with legacy file-serving through * wp-includes/ms-files.php (wp-content/blogs.php in MU). * * @since 3.0.0 */ 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 ); } } /** * Defines Multisite subdomain constants and handles warnings and notices. * * VHOST is deprecated in favor of SUBDOMAIN_INSTALL, which is a bool. * * On first call, the constants are checked and defined. On second call, * we will have translations loaded and can trigger warnings easily. * * @since 3.0.0 */ function ms_subdomain_constants() { static $subdomain_error = null; static $subdomain_error_warn = null; if ( false === $subdomain_error ) { return; } if ( $subdomain_error ) { $vhost_deprecated = sprintf( /* translators: 1: VHOST, 2: SUBDOMAIN_INSTALL, 3: wp-config.php, 4: is_subdomain_install() */ __( 'The constant %1$s <strong>is deprecated</strong>. Use the boolean constant %2$s in %3$s to enable a subdomain configuration. Use %4$s to check whether a subdomain configuration is enabled.' ), '<code>VHOST</code>', '<code>SUBDOMAIN_INSTALL</code>', '<code>wp-config.php</code>', '<code>is_subdomain_install()</code>' ); if ( $subdomain_error_warn ) { wp_trigger_error( __FUNCTION__, sprintf( /* translators: 1: VHOST, 2: SUBDOMAIN_INSTALL */ __( '<strong>Conflicting values for the constants %1$s and %2$s.</strong> The value of %2$s will be assumed to be your subdomain configuration setting.' ), '<code>VHOST</code>', '<code>SUBDOMAIN_INSTALL</code>' ) . ' ' . $vhost_deprecated, E_USER_WARNING ); } else { _deprecated_argument( 'define()', '3.0.0', $vhost_deprecated ); } return; } if ( defined( 'SUBDOMAIN_INSTALL' ) && defined( 'VHOST' ) ) { $subdomain_error = true; if ( SUBDOMAIN_INSTALL !== ( 'yes' === VHOST ) ) { $subdomain_error_warn = true; } } elseif ( defined( 'SUBDOMAIN_INSTALL' ) ) { $subdomain_error = false; define( 'VHOST', SUBDOMAIN_INSTALL ? 'yes' : 'no' ); } elseif ( defined( 'VHOST' ) ) { $subdomain_error = true; define( 'SUBDOMAIN_INSTALL', 'yes' === VHOST ); } else { $subdomain_error = false; define( 'SUBDOMAIN_INSTALL', false ); define( 'VHOST', 'no' ); } }
Simpan