var
/
www
/
html
/
servotec-doerpen
/
wp-includes
/
blocks
| uid:33
comments-title.php
[X]
<?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(); $post_title = 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' );
accordion/
-
O
R
D
accordion-heading/
-
O
R
D
accordion-item/
-
O
R
D
accordion-panel/
-
O
R
D
archives/
-
O
R
D
audio/
-
O
R
D
avatar/
-
O
R
D
block/
-
O
R
D
breadcrumbs/
-
O
R
D
button/
-
O
R
D
buttons/
-
O
R
D
calendar/
-
O
R
D
categories/
-
O
R
D
code/
-
O
R
D
column/
-
O
R
D
columns/
-
O
R
D
comment-author-name/
-
O
R
D
comment-content/
-
O
R
D
comment-date/
-
O
R
D
comment-edit-link/
-
O
R
D
comment-reply-link/
-
O
R
D
comment-template/
-
O
R
D
comments/
-
O
R
D
comments-pagination/
-
O
R
D
comments-pagination-next/
-
O
R
D
comments-pagination-numbers/
-
O
R
D
comments-pagination-previous/
-
O
R
D
comments-title/
-
O
R
D
cover/
-
O
R
D
details/
-
O
R
D
embed/
-
O
R
D
file/
-
O
R
D
footnotes/
-
O
R
D
freeform/
-
O
R
D
gallery/
-
O
R
D
group/
-
O
R
D
heading/
-
O
R
D
home-link/
-
O
R
D
html/
-
O
R
D
icon/
-
O
R
D
image/
-
O
R
D
latest-comments/
-
O
R
D
latest-posts/
-
O
R
D
legacy-widget/
-
O
R
D
list/
-
O
R
D
list-item/
-
O
R
D
loginout/
-
O
R
D
math/
-
O
R
D
media-text/
-
O
R
D
missing/
-
O
R
D
more/
-
O
R
D
navigation/
-
O
R
D
navigation-link/
-
O
R
D
navigation-overlay-close/
-
O
R
D
navigation-submenu/
-
O
R
D
nextpage/
-
O
R
D
page-list/
-
O
R
D
page-list-item/
-
O
R
D
paragraph/
-
O
R
D
pattern/
-
O
R
D
post-author/
-
O
R
D
post-author-biography/
-
O
R
D
post-author-name/
-
O
R
D
post-comments-count/
-
O
R
D
post-comments-form/
-
O
R
D
post-comments-link/
-
O
R
D
post-content/
-
O
R
D
post-date/
-
O
R
D
post-excerpt/
-
O
R
D
post-featured-image/
-
O
R
D
post-navigation-link/
-
O
R
D
post-template/
-
O
R
D
post-terms/
-
O
R
D
post-time-to-read/
-
O
R
D
post-title/
-
O
R
D
preformatted/
-
O
R
D
pullquote/
-
O
R
D
query/
-
O
R
D
query-no-results/
-
O
R
D
query-pagination/
-
O
R
D
query-pagination-next/
-
O
R
D
query-pagination-numbers/
-
O
R
D
query-pagination-previous/
-
O
R
D
query-title/
-
O
R
D
query-total/
-
O
R
D
quote/
-
O
R
D
read-more/
-
O
R
D
rss/
-
O
R
D
search/
-
O
R
D
separator/
-
O
R
D
shortcode/
-
O
R
D
site-logo/
-
O
R
D
site-tagline/
-
O
R
D
site-title/
-
O
R
D
social-link/
-
O
R
D
social-links/
-
O
R
D
spacer/
-
O
R
D
table/
-
O
R
D
tag-cloud/
-
O
R
D
template-part/
-
O
R
D
term-count/
-
O
R
D
term-description/
-
O
R
D
term-name/
-
O
R
D
term-template/
-
O
R
D
terms-query/
-
O
R
D
text-columns/
-
O
R
D
verse/
-
O
R
D
video/
-
O
R
D
widget-group/
-
O
R
D
accordion-item.php
3K
V
E
R
D
accordion.php
1.1K
V
E
R
D
archives.php
4.3K
V
E
R
D
avatar.php
5.5K
V
E
R
D
block.php
4.1K
V
E
R
D
calendar.php
5.9K
V
E
R
D
categories.php
4.8K
V
E
R
D
comment-author-name.php
2.1K
V
E
R
D
comments-pagination-next.php
1.9K
V
E
R
D
comments-pagination-numbers.php
1.6K
V
E
R
D
comments-pagination-previous.php
1.7K
V
E
R
D
comments-pagination.php
1.2K
V
E
R
D
comments-title.php
2.7K
V
E
R
D
cover.php
7.2K
V
E
R
D
details.php
1.5K
V
E
R
D
gallery.php
8.9K
V
E
R
D
home-link.php
5.3K
V
E
R
D
icon.php
4K
V
E
R
D
index.php
5K
V
E
R
D
latest-comments.php
5.4K
V
E
R
D
latest-posts.php
8.6K
V
E
R
D
legacy-widget.php
3.9K
V
E
R
D
list.php
1.2K
V
E
R
D
loginout.php
1.6K
V
E
R
D
media-text.php
4.2K
V
E
R
D
navigation-overlay-close.php
1.7K
V
E
R
D
page-list-item.php
361
V
E
R
D
page-list.php
14.7K
V
E
R
D
paragraph.php
1.1K
V
E
R
D
post-author-biography.php
1.5K
V
E
R
D
post-author-name.php
1.9K
V
E
R
D
post-author.php
2.7K
V
E
R
D
post-comments-form.php
2.7K
V
E
R
D
post-comments-link.php
2.2K
V
E
R
D
post-content.php
2.3K
V
E
R
D
post-date.php
3.6K
V
E
R
D
post-excerpt.php
4.2K
V
E
R
D
post-featured-image.php
9K
V
E
R
D
post-navigation-link.php
4.7K
V
E
R
D
post-template.php
5.6K
V
E
R
D
post-terms.php
3.6K
V
E
R
D
post-time-to-read.php
6.3K
V
E
R
D
post-title.php
2.1K
V
E
R
D
query-no-results.php
1.8K
V
E
R
D
query-pagination-next.php
3.6K
V
E
R
D
query-pagination-numbers.php
4.6K
V
E
R
D
query-pagination-previous.php
3.4K
V
E
R
D
query-pagination.php
1.1K
V
E
R
D
query-title.php
2.7K
V
E
R
D
query-total.php
2.4K
V
E
R
D
read-more.php
1.8K
V
E
R
D
rss.php
4.5K
V
E
R
D
search.php
23.3K
V
E
R
D
site-logo.php
6.2K
V
E
R
D
site-tagline.php
1.2K
V
E
R
D
site-title.php
1.8K
V
E
R
D
social-link.php
66K
V
E
R
D
tag-cloud.php
1.6K
V
E
R
D
template-part.php
10.2K
V
E
R
D
term-name.php
2K
V
E
R
D
term-template.php
4.4K
V
E
R
D
video.php
2.7K
V
E
R
D
widget-group.php
2.4K
V
E
R
D