📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: jetpack.php
<?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; } }
Save