Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.134.95.211
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
theprintave /
wp-includes /
blocks /
search /
Delete
Unzip
Name
Size
Permission
Date
Action
SMTP.php
48
KB
-rw-r--r--
2025-04-15 17:44
autoloader.php
3.92
KB
-rw-r--r--
2024-11-13 12:36
block-directory-20250514003935.js
78.64
KB
-rw-r--r--
2025-04-15 17:44
block.json
1.97
KB
-rw-r--r--
2024-11-13 12:36
cache-compat.php
5.83
KB
-rw-r--r--
2022-10-10 18:22
class-http.php
367
B
-rw-r--r--
2022-06-17 11:20
class-json.php
42.66
KB
-rw-r--r--
2023-02-03 13:35
class-wp-matchesmapregex.php
1.79
KB
-rw-r--r--
2024-04-03 05:49
class-wp-oembed.php
30.91
KB
-rw-r--r--
2025-04-15 17:44
clipboard.min.js
8.8
KB
-rw-r--r--
2022-10-04 15:55
constants.php
4.06
KB
-rw-r--r--
2019-12-09 16:42
cover.php
3.1
KB
-rw-r--r--
2025-04-15 17:44
edit-post.js
120.43
KB
-rw-r--r--
2025-04-30 17:44
edit-widgets.min-20250514002642.js
57.23
KB
-rw-r--r--
2025-04-15 17:44
editor-rtl.css
360
B
-rw-r--r--
2024-11-13 12:36
editor-rtl.min.css
326
B
-rw-r--r--
2024-11-13 12:36
editor.css
360
B
-rw-r--r--
2024-11-13 12:36
editor.min.css
326
B
-rw-r--r--
2024-11-13 12:36
feed-rss-20250514221846.php
1.16
KB
-rw-r--r--
2020-01-29 00:45
feed-rss.php
1.16
KB
-rw-r--r--
2020-01-29 00:45
home-link-20250514182528.php
5.31
KB
-rw-r--r--
2025-04-15 17:44
home-link.php
5.31
KB
-rw-r--r--
2025-04-15 17:44
hooks.min-20250514002648.js
4.66
KB
-rw-r--r--
2024-11-13 12:36
latest-comments.php
4.92
KB
-rw-r--r--
2024-07-16 17:55
latest-posts.php
8.34
KB
-rw-r--r--
2024-11-13 12:36
layout.php
38.5
KB
-rw-r--r--
2025-04-15 17:44
media-views.js
266.92
KB
-rw-r--r--
2025-04-15 17:44
ms-deprecated.php
21.25
KB
-rw-r--r--
2024-07-16 17:55
ms-files-20250514184142.php
2.68
KB
-rw-r--r--
2025-04-30 17:44
patterns.min-20250514002548.js
20.95
KB
-rw-r--r--
2025-04-15 17:44
post-content.php
2.11
KB
-rw-r--r--
2024-07-16 17:55
post-terms.php
3.55
KB
-rw-r--r--
2025-04-15 17:44
shortcode.min-20250513213234.js
2.58
KB
-rw-r--r--
2022-09-23 19:55
shortcodes.php
23.49
KB
-rw-r--r--
2024-07-16 17:55
style-rtl.css
2.59
KB
-rw-r--r--
2025-04-15 17:44
style-rtl.min.css
2.34
KB
-rw-r--r--
2025-04-15 17:44
style.css
2.58
KB
-rw-r--r--
2025-04-15 17:44
style.min.css
2.33
KB
-rw-r--r--
2025-04-15 17:44
template-canvas.php
544
B
-rw-r--r--
2023-10-01 00:22
theme-rtl.css
141
B
-rw-r-----
2023-03-09 00:05
theme-rtl.min.css
126
B
-rw-r-----
2023-03-09 00:05
theme.css
141
B
-rw-r-----
2023-03-09 00:05
theme.min.css
126
B
-rw-r-----
2023-03-09 00:05
tw-sack.min.js
3.21
KB
-rw-r--r--
2022-04-08 20:07
view.asset.php
84
B
-rw-r--r--
2024-04-03 05:49
view.js
4
KB
-rw-r--r--
2025-04-15 17:44
view.min.asset.php
84
B
-rw-r--r--
2024-04-03 05:49
view.min.js
1.34
KB
-rw-r--r--
2025-04-15 17:44
zxcvbn.min.js
802.97
KB
-rw-r--r--
2019-10-26 00:17
Save
Rename
<?php /** * Server-side rendering of the `core/cover` block. * * @package WordPress */ /** * Renders the `core/cover` block on server. * * @since 6.0.0 * * @param array $attributes The block attributes. * @param string $content The block rendered content. * * @return string Returns the cover block markup, if useFeaturedImage is true. */ function render_block_core_cover( $attributes, $content ) { if ( 'image' !== $attributes['backgroundType'] || false === $attributes['useFeaturedImage'] ) { return $content; } $object_position = isset( $attributes['focalPoint'] ) ? round( $attributes['focalPoint']['x'] * 100 ) . '% ' . round( $attributes['focalPoint']['y'] * 100 ) . '%' : null; if ( ! ( $attributes['hasParallax'] || $attributes['isRepeated'] ) ) { $attr = array( 'class' => 'wp-block-cover__image-background', 'data-object-fit' => 'cover', ); if ( $object_position ) { $attr['data-object-position'] = $object_position; $attr['style'] = 'object-position:' . $object_position . ';'; } $image = get_the_post_thumbnail( null, $attributes['sizeSlug'] ?? 'post-thumbnail', $attr ); } else { if ( in_the_loop() ) { update_post_thumbnail_cache(); } $current_featured_image = get_the_post_thumbnail_url( null, $attributes['sizeSlug'] ?? null ); if ( ! $current_featured_image ) { return $content; } $current_thumbnail_id = get_post_thumbnail_id(); $processor = new WP_HTML_Tag_Processor( '<div></div>' ); $processor->next_tag(); $current_alt = trim( strip_tags( get_post_meta( $current_thumbnail_id, '_wp_attachment_image_alt', true ) ) ); if ( $current_alt ) { $processor->set_attribute( 'role', 'img' ); $processor->set_attribute( 'aria-label', $current_alt ); } $processor->add_class( 'wp-block-cover__image-background' ); $processor->add_class( 'wp-image-' . $current_thumbnail_id ); if ( $attributes['hasParallax'] ) { $processor->add_class( 'has-parallax' ); } if ( $attributes['isRepeated'] ) { $processor->add_class( 'is-repeated' ); } $styles = 'background-position:' . ( $object_position ?? '50% 50%' ) . ';'; $styles .= 'background-image:url(' . esc_url( $current_featured_image ) . ');'; $processor->set_attribute( 'style', $styles ); $image = $processor->get_updated_html(); } /* * Inserts the featured image between the (1st) cover 'background' `span` and 'inner_container' `div`, * and removes eventual whitespace characters between the two (typically introduced at template level) */ $inner_container_start = '/<div\b[^>]+wp-block-cover__inner-container[\s|"][^>]*>/U'; if ( 1 === preg_match( $inner_container_start, $content, $matches, PREG_OFFSET_CAPTURE ) ) { $offset = $matches[0][1]; $content = substr( $content, 0, $offset ) . $image . substr( $content, $offset ); } return $content; } /** * Registers the `core/cover` block renderer on server. * * @since 6.0.0 */ function register_block_core_cover() { register_block_type_from_metadata( __DIR__ . '/cover', array( 'render_callback' => 'render_block_core_cover', ) ); } add_action( 'init', 'register_block_core_cover' );