Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
wp900 /
QAtest /
wp-content /
themes /
marsh-blog /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
404.php
870
B
-rw-r--r--
archive.php
1.13
KB
-rw-r--r--
comments.php
3.19
KB
-rw-r--r--
footer.php
635
B
-rw-r--r--
front-page.php
336
B
-rw-r--r--
functions.php
10.51
KB
-rw-r--r--
header.php
1.22
KB
-rw-r--r--
index.php
1.31
KB
-rw-r--r--
page.php
910
B
-rw-r--r--
readme.txt
2.86
KB
-rw-r--r--
screenshot.png
224.56
KB
-rw-r--r--
search.php
1.01
KB
-rw-r--r--
searchform.php
768
B
-rw-r--r--
sidebar.php
513
B
-rw-r--r--
single.php
778
B
-rw-r--r--
style.css
78.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /** * Marsh Blog functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Marsh Blog */ if ( ! function_exists( 'marsh_blog_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function marsh_blog_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Marsh Blog, use a find and replace * to change 'marsh-blog' to the name of your theme in all the template files. */ load_theme_textdomain( 'marsh-blog', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded <title> tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'marsh-blog' ), ) ); // Enable support for custom logo. add_theme_support( 'custom-logo' , array( 'height' =>45, 'width' =>45, 'flex-height' =>true, 'flex-width' =>true, )); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'marsh_blog_custom_background_args', array( 'default-color' => 'fff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; add_editor_style( array( '/assets/css/editor-style' . $min . '.css', marsh_blog_fonts_url() ) ); // Gutenberg support add_theme_support( 'editor-color-palette', array( array( 'name' => esc_html__( 'Tan', 'marsh-blog' ), 'slug' => 'tan', 'color' => '#E6DBAD', ), array( 'name' => esc_html__( 'Yellow', 'marsh-blog' ), 'slug' => 'yellow', 'color' => '#FDE64B', ), array( 'name' => esc_html__( 'Orange', 'marsh-blog' ), 'slug' => 'orange', 'color' => '#ED7014', ), array( 'name' => esc_html__( 'Red', 'marsh-blog' ), 'slug' => 'red', 'color' => '#D0312D', ), array( 'name' => esc_html__( 'Pink', 'marsh-blog' ), 'slug' => 'pink', 'color' => '#b565a7', ), array( 'name' => esc_html__( 'Purple', 'marsh-blog' ), 'slug' => 'purple', 'color' => '#A32CC4', ), array( 'name' => esc_html__( 'Blue', 'marsh-blog' ), 'slug' => 'blue', 'color' => '#3A43BA', ), array( 'name' => esc_html__( 'Green', 'marsh-blog' ), 'slug' => 'green', 'color' => '#3BB143', ), array( 'name' => esc_html__( 'Brown', 'marsh-blog' ), 'slug' => 'brown', 'color' => '#231709', ), array( 'name' => esc_html__( 'Grey', 'marsh-blog' ), 'slug' => 'grey', 'color' => '#6C626D', ), array( 'name' => esc_html__( 'Black', 'marsh-blog' ), 'slug' => 'black', 'color' => '#000000', ), )); add_theme_support( 'align-wide' ); add_theme_support( 'editor-font-sizes', array( array( 'name' => esc_html__( 'small', 'marsh-blog' ), 'shortName' => esc_html__( 'S', 'marsh-blog' ), 'size' => 12, 'slug' => 'small' ), array( 'name' => esc_html__( 'regular', 'marsh-blog' ), 'shortName' => esc_html__( 'M', 'marsh-blog' ), 'size' => 16, 'slug' => 'regular' ), array( 'name' => esc_html__( 'larger', 'marsh-blog' ), 'shortName' => esc_html__( 'L', 'marsh-blog' ), 'size' => 36, 'slug' => 'larger' ), array( 'name' => esc_html__( 'huge', 'marsh-blog' ), 'shortName' => esc_html__( 'XL', 'marsh-blog' ), 'size' => 48, 'slug' => 'huge' ) )); add_theme_support('editor-styles'); add_theme_support( 'wp-block-styles' ); } endif; add_action( 'after_setup_theme', 'marsh_blog_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function marsh_blog_content_width() { $GLOBALS['content_width'] = apply_filters( 'marsh_blog_content_width', 640 ); } add_action( 'after_setup_theme', 'marsh_blog_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function marsh_blog_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'marsh-blog' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'marsh-blog' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer %d', 'marsh-blog' ), 1 ), 'id' => 'footer-1', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer %d', 'marsh-blog' ), 2 ), 'id' => 'footer-2', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer %d', 'marsh-blog' ), 3 ), 'id' => 'footer-3', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer %d', 'marsh-blog' ), 4 ), 'id' => 'footer-4', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'marsh_blog_widgets_init' ); /** * Register custom fonts. */ function marsh_blog_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Poppins, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Poppins: on or off', 'marsh-blog' ) ) { $fonts[] = 'Poppins:400,600,700'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function marsh_blog_scripts() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; $fonts_url = marsh_blog_fonts_url(); $primary_color = marsh_blog_get_option( 'primary_color' ); if ( ! empty( $fonts_url ) ) { wp_enqueue_style( 'marsh-blog-google-fonts', $fonts_url, array(), null ); } wp_enqueue_style( 'fontawesome-all', get_template_directory_uri() . '/assets/css/all' . $min . '.css', '', '4.7.0' ); wp_enqueue_style( 'marsh-blog-blocks', get_template_directory_uri() . '/assets/css/blocks' . $min . '.css' ); wp_enqueue_style( 'marsh-blog-style', get_stylesheet_uri() ); wp_enqueue_script('imagesloaded'); wp_enqueue_script( 'jquery-packery', get_template_directory_uri() . '/assets/js/packery.pkgd' . $min . '.js', array('jquery'), '2017417', true ); wp_enqueue_script( 'marsh-blog-navigation', get_template_directory_uri() . '/assets/js/navigation' . $min . '.js', array(), '20151215', true ); wp_enqueue_script( 'marsh-blog-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix' . $min . '.js', array(), '20151215', true ); wp_enqueue_script( 'marsh-blog-custom-js', get_template_directory_uri() . '/assets/js/custom' . $min . '.js', array('jquery'), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'marsh_blog_scripts' ); /** * Enqueue editor styles for Gutenberg * * @since Marsh Blog 1.0.0 */ function marsh_blog_block_editor_styles() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; // Block styles. wp_enqueue_style( 'marsh-blog-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks' . $min . '.css' ) ); // Add custom fonts. wp_enqueue_style( 'marsh-blog-fonts', marsh_blog_fonts_url(), array(), null ); } add_action( 'enqueue_block_editor_assets', 'marsh_blog_block_editor_styles' ); function marsh_blog_category_title( $title ) { if ( is_category() ) { $title = single_cat_title( '', false ); } return $title; } add_filter( 'get_the_archive_title', 'marsh_blog_category_title' ); /** * Load init. */ require_once get_template_directory() . '/inc/init.php';
Close