Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
owc /
wp-content /
themes /
eduma /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-x--x
data
[ DIR ]
drwxr-x--x
header
[ DIR ]
drwxr-x--x
libs
[ DIR ]
drwxr-x--x
templates
[ DIR ]
drwxr-x--x
widgets
[ DIR ]
drwxr-x--x
custom-functions.php
76.83
KB
-rwxr-x--x
learnpress-functions.php
50.23
KB
-rwxr-x--x
learnpress-v3-functions.php
33.8
KB
-rwxr-x--x
learnpress-v4-functions.php
27.59
KB
-rwxr-x--x
lp-course_offline.php
20.35
KB
-rwxr-x--x
register-functions.php
18.83
KB
-rwxr-x--x
related.php
1.61
KB
-rwxr-x--x
tax-meta.php
3.41
KB
-rwxr-x--x
template-tags.php
13.76
KB
-rwxr-x--x
thim-core-function.php
10.39
KB
-rwxr-x--x
upgrade.php
17.23
KB
-rwxr-x--x
wrapper-before-after.php
6.99
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tax-meta.php
<?php if ( is_admin() ) { /* * prefix of meta keys, optional */ $prefix = 'thim_'; /* * configure your meta box */ $config = array( 'id' => 'category_meta_box', // meta box id, unique per meta box 'title' => esc_html__( 'Category Meta Box', 'eduma' ), // meta box title 'pages' => array( 'category', 'product_cat', 'course_category', 'portfolio_category', 'post_tag' ), // taxonomy name, accept categories, post_tag and custom taxonomies 'context' => 'normal', // where the meta box appear: normal (default), advanced, side; optional 'fields' => array(), // list of meta fields (can be added by field arrays) 'local_images' => false, // Use local or hosted images (meta box images for add/remove) 'use_with_theme' => get_template_directory_uri() . '/inc/libs/Tax-meta-class' //change path if used with theme set to true, false for a plugin or anything else for a custom path(default false). ); $taxonomy = ! empty( $_REQUEST['taxonomy'] ) ? $_REQUEST['taxonomy'] : 'category'; if ( $taxonomy == 'product_cat' ) { $top_prefix = 'woo_'; $cate_prefix = 'woo_cate_'; } elseif ( $taxonomy == 'course_category' ) { $top_prefix = 'learnpress_'; $cate_prefix = 'learnpress_cate_'; } else { $top_prefix = 'archive_'; $cate_prefix = 'archive_cate_'; } $my_meta = new Tax_Meta_Class( $config ); if ( $taxonomy == 'course_category' ) { $my_meta->addColor( $cate_prefix . 'text_color', array( 'name' => esc_html__( 'Text Color', 'eduma' ), 'desc' => esc_html__( 'Use for widget Course layout Category Item Tabs Slider', 'eduma' ) ) ); } $my_meta->addImage( $prefix . $cate_prefix . 'icon', array( 'name' => __( 'Icon', 'eduma' ),'std'=>array() ) ); $my_meta->addImage( $prefix . $cate_prefix . 'thumnail', array( 'name' => esc_html__( 'Thumbnail', 'eduma' ), 'std'=>array() ) ); $my_meta->addWysiwyg( $prefix . $cate_prefix . 'content', array('name'=> __( 'Content', 'eduma' ) ) ); $my_meta->addSelect( $prefix . 'layout', array( '' => esc_html__( 'Using in Theme Option', 'eduma' ), 'full-content' => esc_html__( 'No Sidebar', 'eduma' ), 'sidebar-left' => esc_html__( 'Left Sidebar', 'eduma' ), 'sidebar-right' => esc_html__( 'Right Sidebar', 'eduma' ) ), array( 'name' => esc_html__( 'Custom Layout ', 'eduma' ), 'std' => array( '' ) ) ); $my_meta->addCheckbox( $prefix . 'custom_heading', array( 'name' => esc_html__( 'Custom Heading ', 'eduma' ), 'std' => '' ) ); $my_meta->addImage( $prefix . $top_prefix . 'top_image', array( 'name' => esc_html__( 'Background Image Heading', 'eduma' ),'std'=>array() ) ); $my_meta->addColor( $prefix . $cate_prefix . 'heading_bg_color', array( 'name' => esc_html__( 'Background Color Heading', 'eduma' ) ) ); $my_meta->addText( $prefix . $cate_prefix . 'heading_bg_opacity', array( 'name' => __( 'Background color opacity', 'eduma' ) ) ); $my_meta->addColor( $prefix . $cate_prefix . 'heading_text_color', array( 'name' => esc_html__( 'Text Color Heading', 'eduma' ) ) ); $my_meta->addColor( $prefix . $cate_prefix . 'sub_heading_text_color', array( 'name' => esc_html__( 'Color Description Category', 'eduma' ) ) ); $my_meta->addCheckbox( $prefix . $cate_prefix . 'hide_title', array( 'name' => esc_html__( 'Hide Title', 'eduma' ) ) ); $my_meta->addCheckbox( $prefix . $cate_prefix . 'hide_breadcrumbs', array( 'name' => esc_html__( 'Hide Breadcrumbs', 'eduma' ) ) ); $my_meta->Finish(); }
Close