Linux webm002.cluster120.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.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
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 /
verseaumee /
TF89388 /
wp-content /
themes /
noisa /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
icons
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
vc_templates
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
1021
B
-rw-r--r--
archive.php
2.28
KB
-rw-r--r--
author.php
2.29
KB
-rw-r--r--
category.php
2.28
KB
-rw-r--r--
comments.php
4.94
KB
-rw-r--r--
content-custom.php
484
B
-rw-r--r--
content-page.php
599
B
-rw-r--r--
content-search.php
2.35
KB
-rw-r--r--
content-single.php
753
B
-rw-r--r--
content.php
11.43
KB
-rw-r--r--
footer.php
1.46
KB
-rw-r--r--
functions-extended.php
16.18
KB
-rw-r--r--
functions.php
25.77
KB
-rw-r--r--
header.php
4.85
KB
-rw-r--r--
index.php
1.88
KB
-rw-r--r--
page.php
1.33
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
0
B
-rw-r--r--
screenshot.png
496.33
KB
-rw-r--r--
search.php
2.27
KB
-rw-r--r--
searchform.php
356
B
-rw-r--r--
sidebar-category.php
498
B
-rw-r--r--
sidebar-custom.php
1.13
KB
-rw-r--r--
sidebar-footer-col1.php
446
B
-rw-r--r--
sidebar-footer-col2.php
446
B
-rw-r--r--
sidebar-footer-col3.php
446
B
-rw-r--r--
sidebar-slidebar.php
441
B
-rw-r--r--
sidebar.php
484
B
-rw-r--r--
single-noisa_artists.php
1.71
KB
-rw-r--r--
single-noisa_events.php
1.74
KB
-rw-r--r--
single-noisa_gallery.php
5.98
KB
-rw-r--r--
single-noisa_releases.php
1.74
KB
-rw-r--r--
single.php
1.74
KB
-rw-r--r--
style.css
147.06
KB
-rw-r--r--
tag.php
2.27
KB
-rw-r--r--
taxonomy.php
14.91
KB
-rw-r--r--
woocommerce.php
2.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : single-noisa_gallery.php
<?php /** * Theme Name: Noisa * Theme Author: Mariusz Rek - Rascals Themes * Theme URI: http://rascalsthemes.com/noisa * Author URI: http://rascalsthemes.com * File: single-noisa_gallery.php * @package noisa * @since 1.0.0 */ get_header(); // Get options $noisa_opts = noisa_opts(); // Get layout $noisa_layout = get_post_meta( $wp_query->post->ID, '_layout', true ); $noisa_layout = isset( $noisa_layout ) && $noisa_layout !== '' ? $noisa_layout = $noisa_layout : $noisa_layout = 'wide'; // Copy query $temp_post = $post; $query_temp = $wp_query; // Pagination Limit $limit = (int)get_post_meta( $wp_query->post->ID, '_limit', true ); $limit = $limit && $limit === '' ? $limit = 6 : $limit = $limit; // Images per row $images_per_row = get_post_meta( $wp_query->post->ID, '_images_per_row', true ); // Get Custom Intro Section get_template_part( 'inc/custom-intro' ); ?> <div id="content"> <div class="container clearfix"> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php // Start the Loop. while ( have_posts() ) : the_post(); // Album ID $album_id = get_the_id(); // Images ids $images_ids = get_post_meta( $wp_query->post->ID, '_gallery_ids', true ); the_content(); ?> <?php endwhile; ?> <?php wp_reset_query(); ?> <?php if ( $images_ids || $images_ids !== '' ) : $ids = explode( '|', $images_ids ); $gallery_loop_args = array( 'post_type' => 'attachment', 'post_mime_type' => 'image', 'post__in' => $ids, 'orderby' => 'post__in', 'post_status' => 'any', ); // Posts number $temp_args = $gallery_loop_args; $temp_args['showposts'] = -1; $temp_query_count = new WP_Query(); $temp_query_count->query( $temp_args ); $posts_nr = $temp_query_count->post_count; // Add limit $gallery_loop_args['showposts'] = $limit; $wp_query = new WP_Query(); $wp_query->query( $gallery_loop_args ); ?> <!--############ Artists grid ############ --> <div class="grid-wrapper clearfix" data-grid="gallery-images-grid"> <?php if ( have_posts() ) : ?> <div class="masonry gallery-images-grid masonry-anim clearfix"> <?php while ( have_posts() ) : the_post(); ?> <?php $image_att = wp_get_attachment_image_src( get_the_id(), 'noisa-small-thumb' ); if ( ! $image_att[0] ) { continue; } $defaults = array( 'title' => '', 'custom_link' => '', 'thumb_icon' => 'view' ); // Get image meta $image = get_post_meta( $album_id, '_gallery_ids_' . get_the_id(), true ); // Add default values if ( isset( $image ) && is_array( $image ) ) { $image = array_merge( $defaults, $image ); } else { $image = $defaults; } // Add image src to array $image['src'] = $image_att[0]; if ( $image[ 'custom_link' ] !== '' ) { $link = $image[ 'custom_link' ]; } else { $link = wp_get_attachment_image_src( get_the_id(), 'full' ); $link = $link[0]; } if ( $image[ 'thumb_icon' ] === 'view' ) { $image[ 'thumb_icon' ] = 'search'; } else if ( $image[ 'thumb_icon' ] === 'video' ) { $image[ 'thumb_icon' ] = 'play2'; } ?> <div class="masonry-item gallery-album-image flex-col-1-4"> <a href="<?php echo esc_attr( $link ) ?>" class="thumb thumb-desc <?php if ( $image[ 'custom_link' ] !== '' ) { echo 'iframe-link'; } ?> g-item" title="<?php echo esc_attr( $image['title'] ); ?>" data-group="gallery"> <img src="<?php echo esc_url( $image['src'] ) ?>" alt="<?php esc_attr_e( 'Gallery thumbnail', 'noisa' ); ?>" title="<?php echo esc_attr( $image['title'] ); ?>"> <div class="desc-layer"> <span class="thumb-icon"><span class="icon icon-<?php echo esc_attr( $image[ 'thumb_icon' ] ) ?>"></span></span> </div> </a> </div> <?php endwhile; // End Loop ?> </div> <?php endif; ?> <!-- Load more --> <div class="grid-wrapper hidden" data-grid="gallery-images-grid"> <div class="filters-wrapper"> <div class="filter" data-obj='{"action": "noisa_gallery_images_filter", "filter_name" : "all", "limit": "<?php echo esc_attr( $limit ); ?>", "id": "<?php echo esc_attr( $album_id ); ?>"}' ></div> </div> </div> <div class="load-more-wrap text-center <?php if ( $posts_nr <= $limit ) { echo esc_attr( 'hidden' ); } ?>"> <a href="#" data-pagenum="2" class="btn btn-medium load-more"><span class="icon-wrap"><span class="icon"></span></span> <?php esc_html_e( 'Load more', 'noisa' ) ?></a> </div> </div> <div class="clear"></div> <?php else : ?> <?php echo '<p class="message error">' . esc_html__( 'Gallery error: Album has no pictures.', 'noisa' ) . '</p>'; ?> <?php endif; // images ids ?> <?php // Get orginal query $post = $temp_post; $wp_query = $query_temp; ?> </article> <!-- article --> </div> <!-- .container --> <!-- Single Navigation --> <?php if ( is_single() ) : ?> <?php echo noisa_custom_post_nav(); ?> <?php endif; ?> </div> <!-- #content --> <!-- Comments --> <?php // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { $disqus = $noisa_opts->get_option( 'disqus_comments' ); $disqus_shortname = $noisa_opts->get_option( 'disqus_shortname' ); if ( ( $disqus && $disqus === 'on' ) && ( $disqus_shortname && $disqus_shortname !== '' ) ) { get_template_part( 'inc/disqus' ); } else { comments_template(); } } get_footer();
Close