$27 GRAYBYTE WORDPRESS FILE MANAGER $71

SERVER : webd004.cluster105.gra.hosting.ovh.net #1 SMP Fri May 15 02:41:25 UTC 2026
SERVER IP : 213.186.33.16 | ADMIN IP 216.73.217.13
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : _dyuweyrj4,_dyuweyrj4r,dl

/home/agencefrei/www/wp-includes/blocks/

HOME
Current File : /home/agencefrei/www/wp-includes/blocks//comment-template.php
<?php
/**
 * Server-side rendering of the `core/comment-template` block.
 *
 * @package WordPress
 */

/**
 * Function that recursively renders a list of nested comments.
 *
 * @since 6.3.0 Changed render_block_context priority to `1`.
 *
 * @global int $comment_depth
 *
 * @param WP_Comment[] $comments        The array of comments.
 * @param WP_Block     $block           Block instance.
 * @return string
 */
function block_core_comment_template_render_comments( $comments, $block ) {
	global $comment_depth;
	$thread_comments       = get_option( 'thread_comments' );
	$thread_comments_depth = get_option( 'thread_comments_depth' );

	if ( empty( $comment_depth ) ) {
		$comment_depth = 1;
	}

	$content = '';
	foreach ( $comments as $comment ) {
		$comment_id           = $comment->comment_ID;
		$filter_block_context = static function ( $context ) use ( $comment_id ) {
			$context['commentId'] = $comment_id;
			return $context;
		};

		/*
		 * We set commentId context through the `render_block_context` filter so
		 * that dynamically inserted blocks (at `render_block` filter stage)
		 * will also receive that context.
		 *
		 * Use an early priority to so that other 'render_block_context' filters
		 * have access to the values.
		 */
		add_filter( 'render_block_context', $filter_block_context, 1 );

		/*
		 * We construct a new WP_Block instance from the parsed block so that
		 * it'll receive any changes made by the `render_block_data` filter.
		 */
		$block_content = ( new WP_Block( $block->parsed_block ) )->render( array( 'dynamic' => false ) );

		remove_filter( 'render_block_context', $filter_block_context, 1 );

		$children = $comment->get_children();

		/*
		 * We need to create the CSS classes BEFORE recursing into the children.
		 * This is because comment_class() uses globals like `$comment_alt`
		 * and `$comment_thread_alt` which are order-sensitive.
		 *
		 * The `false` parameter at the end means that we do NOT want the function
		 * to `echo` the output but to return a string.
		 * See https://developer.wordpress.org/reference/functions/comment_class/#parameters.
		 */
		$comment_classes = comment_class( '', $comment->comment_ID, $comment->comment_post_ID, false );

		// If the comment has children, recurse to create the HTML for the nested
		// comments.
		if ( ! empty( $children ) && ! empty( $thread_comments ) ) {
			if ( $comment_depth < $thread_comments_depth ) {
				++$comment_depth;
				$inner_content  = block_core_comment_template_render_comments(
					$children,
					$block
				);
				$block_content .= sprintf( '<ol>%1$s</ol>', $inner_content );
				--$comment_depth;
			} else {
				$block_content .= block_core_comment_template_render_comments(
					$children,
					$block
				);
			}
		}

		$content .= sprintf( '<li id="comment-%1$s" %2$s>%3$s</li>', $comment->comment_ID, $comment_classes, $block_content );
	}

	return $content;
}

/**
 * Renders the `core/comment-template` 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 Returns the HTML representing the comments using the layout
 * defined by the block's inner blocks.
 */
function render_block_core_comment_template( $attributes, $content, $block ) {
	// Bail out early if the post ID is not set for some reason.
	if ( empty( $block->context['postId'] ) ) {
		return '';
	}

	if ( post_password_required( $block->context['postId'] ) ) {
		return;
	}

	$comment_query = new WP_Comment_Query(
		build_comment_query_vars_from_block( $block )
	);

	// Get an array of comments for the current post.
	$comments = $comment_query->get_comments();
	if ( count( $comments ) === 0 ) {
		return '';
	}

	$comment_order = get_option( 'comment_order' );

	if ( 'desc' === $comment_order ) {
		$comments = array_reverse( $comments );
	}

	$wrapper_attributes = get_block_wrapper_attributes();

	return sprintf(
		'<ol %1$s>%2$s</ol>',
		$wrapper_attributes,
		block_core_comment_template_render_comments( $comments, $block )
	);
}

/**
 * Registers the `core/comment-template` block on the server.
 *
 * @since 6.0.0
 */
function register_block_core_comment_template() {
	register_block_type_from_metadata(
		__DIR__ . '/comment-template',
		array(
			'render_callback'   => 'render_block_core_comment_template',
			'skip_inner_blocks' => true,
		)
	);
}
add_action( 'init', 'register_block_core_comment_template' );


Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
2 Jun 2026 12.56 AM
agencefrei / users
0705
accordion
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
accordion-heading
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
accordion-item
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
accordion-panel
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
archives
--
20 May 2026 11.16 PM
agencefrei / users
0705
audio
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
avatar
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
block
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
breadcrumbs
--
20 May 2026 11.16 PM
agencefrei / users
0755
button
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
buttons
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
calendar
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
categories
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
code
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
column
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
columns
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comment-author-name
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comment-content
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comment-date
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comment-edit-link
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comment-reply-link
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comment-template
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comments
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comments-pagination
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comments-pagination-next
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comments-pagination-numbers
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comments-pagination-previous
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comments-title
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
cover
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
details
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
embed
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
file
--
20 May 2026 11.16 PM
agencefrei / users
0705
footnotes
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
freeform
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
gallery
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
group
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
heading
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
home-link
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
html
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
icon
--
20 May 2026 11.16 PM
agencefrei / users
0755
image
--
20 May 2026 11.16 PM
agencefrei / users
0705
latest-comments
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
latest-posts
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
legacy-widget
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
list
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
list-item
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
loginout
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
math
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
media-text
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
missing
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
more
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
navigation
--
20 May 2026 11.16 PM
agencefrei / users
0705
navigation-link
--
20 May 2026 11.16 PM
agencefrei / users
0705
navigation-overlay-close
--
20 May 2026 11.16 PM
agencefrei / users
0755
navigation-submenu
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
nextpage
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
page-list
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
page-list-item
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
paragraph
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
pattern
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
post-author
--
20 May 2026 11.16 PM
agencefrei / users
0705
post-author-biography
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-author-name
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-comments-count
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-comments-form
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-comments-link
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-content
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
post-date
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-excerpt
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-featured-image
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
post-navigation-link
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-template
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-terms
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-time-to-read
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-title
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
preformatted
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
pullquote
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query
--
20 May 2026 11.16 PM
agencefrei / users
0705
query-no-results
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-pagination
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-pagination-next
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-pagination-numbers
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-pagination-previous
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-title
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-total
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
quote
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
read-more
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
rss
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
search
--
20 May 2026 11.16 PM
agencefrei / users
0705
separator
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
shortcode
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
site-logo
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
site-tagline
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
site-title
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
social-link
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
social-links
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
spacer
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
table
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
tag-cloud
--
20 May 2026 11.16 PM
agencefrei / users
0705
template-part
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
term-count
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
term-description
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
term-name
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
term-template
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
terms-query
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
text-columns
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
verse
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
video
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
widget-group
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
accordion-item.php
2.97 KB
20 May 2026 11.16 PM
agencefrei / users
0644
accordion.php
1.12 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
archives.php
4.282 KB
20 May 2026 11.16 PM
agencefrei / users
0644
avatar.php
5.502 KB
20 May 2026 11.16 PM
agencefrei / users
0644
block-patterns.php
15.24 KB
20 May 2026 11.16 PM
agencefrei / users
0644
block.php
4.088 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
blocks-json.php
194.456 KB
20 May 2026 11.16 PM
agencefrei / users
0644
breadcrumbs.php
18.61 KB
20 May 2026 11.16 PM
agencefrei / users
0644
button.php
1.711 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
cache-compat.php
10.763 KB
20 May 2026 11.16 PM
agencefrei / users
0644
cache.php
13.17 KB
6 Mar 2026 5.42 PM
agencefrei / users
0644
calendar.php
5.933 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
categories.php
4.822 KB
20 May 2026 11.16 PM
agencefrei / users
0644
class-wp-block-parser.php
11.25 KB
20 May 2026 11.16 PM
agencefrei / users
0644
class-wp-editor.php
70.535 KB
20 May 2026 11.16 PM
agencefrei / users
0644
class-wp-http-cookie.php
7.099 KB
20 May 2026 11.16 PM
agencefrei / users
0644
class-wp-http-response.php
2.907 KB
6 Mar 2026 5.42 PM
agencefrei / users
0644
comment-author-name.php
2.083 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-content.php
2.401 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-date.php
1.819 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-edit-link.php
1.673 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-reply-link.php
2.026 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-template.php
4.389 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-pagination-next.php
1.879 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-pagination-numbers.php
1.594 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-pagination-previous.php
1.748 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-pagination.php
1.231 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-title.php
2.722 KB
20 May 2026 11.16 PM
agencefrei / users
0644
comments.php
6.625 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
cover.php
7.248 KB
20 May 2026 11.16 PM
agencefrei / users
0644
default-widgets.php
2.241 KB
6 Mar 2026 5.42 PM
agencefrei / users
0644
details.php
1.463 KB
20 May 2026 11.16 PM
agencefrei / users
0644
embed.php
37.994 KB
20 May 2026 11.16 PM
agencefrei / users
0644
file.php
1.835 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
footnotes.php
3.729 KB
20 May 2026 11.16 PM
agencefrei / users
0644
gallery.php
8.854 KB
20 May 2026 11.16 PM
agencefrei / users
0644
heading.php
1.271 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
home-link.php
5.311 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
http.php
26.616 KB
20 May 2026 11.16 PM
agencefrei / users
0644
icon.php
4.042 KB
20 May 2026 11.16 PM
agencefrei / users
0644
image.php
17.247 KB
20 May 2026 11.16 PM
agencefrei / users
0644
index.php
4.991 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
latest-comments.php
5.359 KB
20 May 2026 11.16 PM
agencefrei / users
0644
latest-posts.php
8.636 KB
20 May 2026 11.16 PM
agencefrei / users
0644
legacy-widget.php
3.917 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
list.php
1.243 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
loginout.php
1.625 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
media-text.php
4.197 KB
20 May 2026 11.16 PM
agencefrei / users
0644
navigation-link.php
15.841 KB
20 May 2026 11.16 PM
agencefrei / users
0644
navigation-overlay-close.php
1.724 KB
20 May 2026 11.16 PM
agencefrei / users
0644
navigation-submenu.php
11.469 KB
20 May 2026 11.16 PM
agencefrei / users
0644
navigation.php
63.298 KB
20 May 2026 11.16 PM
agencefrei / users
0644
page-list-item.php
0.353 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
page-list.php
14.716 KB
20 May 2026 11.16 PM
agencefrei / users
0644
paragraph.php
1.112 KB
20 May 2026 11.16 PM
agencefrei / users
0644
pattern.php
1.746 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
pluggable.php
124.568 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-author-biography.php
1.488 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-author-name.php
1.905 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-author.php
2.67 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-comments-count.php
1.245 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-comments-form.php
2.739 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-comments-link.php
2.185 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-content.php
2.292 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-date.php
3.569 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-excerpt.php
4.214 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-featured-image.php
9.031 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-navigation-link.php
4.694 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-template.php
5.554 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-terms.php
3.555 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-time-to-read.php
6.261 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-title.php
2.088 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
query-no-results.php
1.804 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
query-pagination-next.php
3.59 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query-pagination-numbers.php
4.59 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query-pagination-previous.php
3.392 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query-pagination.php
1.148 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
query-title.php
2.706 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query-total.php
2.413 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query.php
5.557 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
read-more.php
1.787 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
require-dynamic-blocks.php
4.861 KB
20 May 2026 11.16 PM
agencefrei / users
0644
require-static-blocks.php
0.508 KB
20 May 2026 11.16 PM
agencefrei / users
0644
rss.php
4.501 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
search.php
23.259 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
shortcode.php
0.718 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
site-logo.php
6.186 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
site-tagline.php
1.175 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
site-title.php
1.82 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
social-link.php
66.018 KB
20 May 2026 11.16 PM
agencefrei / users
0644
tag-cloud.php
1.553 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
template-part.php
10.201 KB
20 May 2026 11.16 PM
agencefrei / users
0644
term-count.php
1.8 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
term-description.php
1.729 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
term-name.php
1.99 KB
20 May 2026 11.16 PM
agencefrei / users
0644
term-template.php
4.412 KB
6 Mar 2026 7.54 PM
agencefrei / users
0644
video.php
2.669 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
widget-group.php
2.381 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF Static GIF