Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cstage /
wp-content /
themes /
signify /
inc /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxr-xr-x
2026-09-04 19:25
customizer
[ DIR ]
drwxr-xr-x
2026-09-04 19:29
class-tgm-plugin-activation.php
119.89
KB
-rw-r--r--
2025-02-20 17:00
custom-header.php
9.39
KB
-rw-r--r--
2025-02-20 17:00
header-background-color.php
2.83
KB
-rw-r--r--
2025-02-20 17:00
jetpack.php
1012
B
-rw-r--r--
2025-02-20 17:00
template-tags.php
10.13
KB
-rw-r--r--
2025-02-20 17:00
tgm.php
931
B
-rw-r--r--
2025-02-20 17:00
Save
Rename
<?php /** * Jetpack Compatibility File * * @link https://jetpack.com/ * * @package Signify */ /** * Jetpack setup function. * * See: https://jetpack.com/support/infinite-scroll/ * See: https://jetpack.com/support/responsive-videos/ * See: https://jetpack.com/support/content-options/ */ function signify_jetpack_setup() { // Add theme support for Infinite Scroll. add_theme_support( 'infinite-scroll', array( 'type' => 'click', 'container' => 'infinite-post-wrap', 'wrapper' => false, 'render' => 'signify_infinite_scroll_render', 'footer' => false, ) ); } add_action( 'after_setup_theme', 'signify_jetpack_setup' ); /** * Custom render function for Infinite Scroll. */ function signify_infinite_scroll_render() { while ( have_posts() ) { the_post(); if ( is_search() ) : get_template_part( 'template-parts/content/content', 'search' ); else : get_template_part( 'template-parts/content/content', get_post_format() ); endif; } }