golden hour
/var/softaculous/sitepad/editor/site-admin
⬆️ Go Up
Upload
File/Folder
Size
Actions
admin-ajax.php
4.32 KB
Del
OK
admin-footer.php
2.3 KB
Del
OK
admin-header.php
13.74 KB
Del
OK
admin-post.php
1.66 KB
Del
OK
admin.php
11.1 KB
Del
OK
async-upload.php
3.63 KB
Del
OK
comment.php
10.66 KB
Del
OK
cookie-consent.php
17.43 KB
Del
OK
css
-
Del
OK
custom-background.php
20.06 KB
Del
OK
custom-header.php
46.28 KB
Del
OK
customize.php
8.69 KB
Del
OK
edit-form-advanced.php
30.63 KB
Del
OK
edit-form-blocks.php
12.82 KB
Del
OK
edit-form-comment.php
7.32 KB
Del
OK
edit-tag-form.php
9.28 KB
Del
OK
edit-tags.php
21.41 KB
Del
OK
edit.php
21.76 KB
Del
OK
export.php
10.69 KB
Del
OK
features.php
4.64 KB
Del
OK
fonts
-
Del
OK
google-analytics.php
2.79 KB
Del
OK
images
-
Del
OK
import.php
7.28 KB
Del
OK
includes
-
Del
OK
index.php
12.57 KB
Del
OK
js
-
Del
OK
load-scripts.php
1.62 KB
Del
OK
load-styles.php
2.27 KB
Del
OK
mailchimp.php
4.51 KB
Del
OK
media-new.php
3.12 KB
Del
OK
media-upload.php
3.3 KB
Del
OK
media.php
5.54 KB
Del
OK
menu-header.php
7.63 KB
Del
OK
menu.php
9.83 KB
Del
OK
nav-menus.php
38.34 KB
Del
OK
options-discussion.php
14.83 KB
Del
OK
options-general.php
15.88 KB
Del
OK
options-head.php
492 B
Del
OK
options-media.php
6.05 KB
Del
OK
options-permalink.php
9.34 KB
Del
OK
options-reading.php
9.05 KB
Del
OK
options.php
11.6 KB
Del
OK
plans.php
9.42 KB
Del
OK
post-new.php
3.56 KB
Del
OK
post.php
10.65 KB
Del
OK
privacy.php
6.81 KB
Del
OK
profile.php
298 B
Del
OK
revision.php
5.06 KB
Del
OK
seo.php
3.98 KB
Del
OK
setup.php
22.96 KB
Del
OK
sitemap.php
7.88 KB
Del
OK
smtp-mail.php
12.75 KB
Del
OK
term.php
2.07 KB
Del
OK
themes.php
20.78 KB
Del
OK
themes_setup.php
18.26 KB
Del
OK
upload.php
13.46 KB
Del
OK
user-edit.php
21.36 KB
Del
OK
user-new.php
21.56 KB
Del
OK
users.php
18.62 KB
Del
OK
Edit: load-styles.php
<?php /** * Disable error reporting * * Set this to error_reporting( -1 ) for debugging */ error_reporting( 0 ); /** Set ABSPATH for execution */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', dirname( dirname( __FILE__ ) ) . '/' ); } define( 'WPINC', 'site-inc' ); require( ABSPATH . 'site-admin/includes/noop.php' ); require( ABSPATH . WPINC . '/script-loader.php' ); require( ABSPATH . WPINC . '/version.php' ); $load = $_GET['load']; if ( is_array( $load ) ) { $load = implode( '', $load ); } $load = preg_replace( '/[^a-z0-9,_-]+/i', '', $load ); $load = array_unique( explode( ',', $load ) ); if ( empty( $load ) ) { exit; } $rtl = ( isset( $_GET['dir'] ) && 'rtl' == $_GET['dir'] ); $expires_offset = 31536000; // 1 year $out = ''; $wp_styles = new WP_Styles(); wp_default_styles( $wp_styles ); if ( isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) && stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ) === $wp_version ) { $protocol = $_SERVER['SERVER_PROTOCOL']; if ( ! in_array( $protocol, array( 'HTTP/1.1', 'HTTP/2', 'HTTP/2.0' ) ) ) { $protocol = 'HTTP/1.0'; } header( "$protocol 304 Not Modified" ); exit(); } foreach ( $load as $handle ) { if ( ! array_key_exists( $handle, $wp_styles->registered ) ) { continue; } $style = $wp_styles->registered[ $handle ]; if ( empty( $style->src ) ) { continue; } $path = ABSPATH . $style->src; if ( $rtl && ! empty( $style->extra['rtl'] ) ) { // All default styles have fully independent RTL files. $path = str_replace( '.min.css', '-rtl.min.css', $path ); } $content = get_file( $path ) . "\n"; if ( strpos( $style->src, '/' . WPINC . '/css/' ) === 0 ) { $content = str_replace( '../images/', '../' . WPINC . '/images/', $content ); $content = str_replace( '../js/tinymce/', '../' . WPINC . '/js/tinymce/', $content ); $content = str_replace( '../fonts/', '../' . WPINC . '/fonts/', $content ); $out .= $content; } else { $content = str_replace( '../images/', 'images/', $content ); $out .= str_replace( '../fonts/', './fonts/', $content ); } } header( "Etag: $wp_version" ); header( 'Content-Type: text/css; charset=UTF-8' ); header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' ); header( "Cache-Control: public, max-age=$expires_offset" ); echo $out; exit;
Save