wppaste
WordPress

TwentyNineteen_Walker_Comment::html5_comment( WP_Comment $comment, int $depth, array $args )

Source
wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php:26
Outputs a comment in the HTML5 format.

Compatibility

WordPress
core
PHP
7.4–8.6-dev
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.

Parameters

$commentWP_Comment
Comment to display.
$depthint
Depth of the current comment.
$argsarray
An array of arguments.

Performance profile

How much work a call to TwentyNineteen_Walker_Comment::html5_comment() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.

Cost class
Heavy

Reaches the database via get_post().

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
146–168

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 177.

Plugin surface
None

Nothing here hands control to plugin code.

Called by
0

Nothing in core calls this; the cost is only what you spend yourself.

What it touches

  • hookthird-party callbacksapply_filters()one call below TwentyNineteen_Walker_Comment::html5_comment()
  • optionoption read or writeget_option()one call below TwentyNineteen_Walker_Comment::html5_comment()
  • querycontent queryget_post()one call below TwentyNineteen_Walker_Comment::html5_comment()

Further down the call graph this can also reach cache, serialize and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.

What one call costs · 4 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost TwentyNineteen_Walker_Comment::html5_comment() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
!twentynineteen_is_comment_by_post_author()146–157comment_ID(), comment_class(), comment_ID(), get_comment_author_url(), get_comment_author(), get_avatar(), twentynineteen_is_comment_by_post_author(), __(), wp_kses(), printf(), __(), get_comment_date(), get_comment_time(), sprintf(), get_comment_link(), esc_url(), get_comment_time(), printf(), twentynineteen_get_icon_svg(), __(), edit_comment_link(), wp_get_current_commenter(), __(), comment_text(), div-comment(), array_merge()
!empty($comment_author_url) && !twentynineteen_is_comment_by_post_author()153–160comment_ID(), comment_class(), comment_ID(), get_comment_author_url(), get_comment_author(), get_avatar(), printf(), twentynineteen_is_comment_by_post_author(), __(), wp_kses(), printf(), __(), get_comment_date(), get_comment_time(), sprintf(), get_comment_link(), esc_url(), get_comment_time(), printf(), twentynineteen_get_icon_svg(), __(), edit_comment_link(), wp_get_current_commenter(), __(), comment_text(), div-comment(), array_merge()
twentynineteen_is_comment_by_post_author()154–165comment_ID(), comment_class(), comment_ID(), get_comment_author_url(), get_comment_author(), get_avatar(), twentynineteen_is_comment_by_post_author(), twentynineteen_get_icon_svg(), printf(), __(), wp_kses(), printf(), __(), get_comment_date(), get_comment_time(), sprintf(), get_comment_link(), esc_url(), get_comment_time(), printf(), twentynineteen_get_icon_svg(), __(), edit_comment_link(), wp_get_current_commenter(), __(), comment_text(), div-comment(), array_merge()
!empty($comment_author_url) && twentynineteen_is_comment_by_post_author()161–168comment_ID(), comment_class(), comment_ID(), get_comment_author_url(), get_comment_author(), get_avatar(), printf(), twentynineteen_is_comment_by_post_author(), twentynineteen_get_icon_svg(), printf(), __(), wp_kses(), printf(), __(), get_comment_date(), get_comment_time(), sprintf(), get_comment_link(), esc_url(), get_comment_time(), printf(), twentynineteen_get_icon_svg(), __(), edit_comment_link(), wp_get_current_commenter(), __(), comment_text(), div-comment(), array_merge()

Across PHP versions

PHPCompiledExecutedBranchesNotes
8.6-dev179148–17082 more instructions than PHP 8.5
8.5177146–1688
8.4177146–1688
8.3177146–1688
8.2177146–1688
8.1177146–1688
7.4177146–1688

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Uses · 17

Show all 17

Source code

	protected function html5_comment( $comment, $depth, $args ) { 		$tag = ( 'div' === $args['style'] ) ? 'div' : 'li'; 		?>		<<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?>>			<article id="div-comment-<?php comment_ID(); ?>" class="comment-body">				<footer class="comment-meta">					<div class="comment-author vcard">						<?php						$comment_author_url = get_comment_author_url( $comment );						$comment_author     = get_comment_author( $comment );						$avatar             = get_avatar( $comment, $args['avatar_size'] );						if ( 0 !== (int) $args['avatar_size'] ) {							if ( empty( $comment_author_url ) ) {								echo $avatar;							} else {								printf( '<a href="%s" rel="external nofollow" class="url">', $comment_author_url );								echo $avatar;							}						} 						/*						 * Using the `check` icon instead of `check_circle`, since we can't add a						 * fill color to the inner check shape when in circle form.						 */						if ( twentynineteen_is_comment_by_post_author( $comment ) ) {							printf( '<span class="post-author-badge" aria-hidden="true">%s</span>', twentynineteen_get_icon_svg( 'check', 24 ) );						} 						printf(							wp_kses(								/* translators: %s: Comment author link. */								__( '%s <span class="screen-reader-text says">says:</span>', 'twentynineteen' ),								array(									'span' => array(										'class' => array(),									),								)							),							'<b class="fn">' . $comment_author . '</b>'						); 						if ( ! empty( $comment_author_url ) ) {							echo '</a>';						}						?>					</div><!-- .comment-author --> 					<div class="comment-metadata">						<?php						/* translators: 1: Comment date, 2: Comment time. */						$comment_timestamp = sprintf( __( '%1$s at %2$s', 'twentynineteen' ), get_comment_date( '', $comment ), get_comment_time() ); 						printf(							'<a href="%s"><time datetime="%s">%s</time></a>',							esc_url( get_comment_link( $comment, $args ) ),							get_comment_time( 'c' ),							$comment_timestamp						); 						$edit_comment_icon = twentynineteen_get_icon_svg( 'edit', 16 );						edit_comment_link( __( 'Edit', 'twentynineteen' ), ' <span class="edit-link-sep">&mdash;</span> <span class="edit-link">' . $edit_comment_icon, '</span>' );						?>					</div><!-- .comment-metadata --> 					<?php					$commenter = wp_get_current_commenter();					if ( $commenter['comment_author_email'] ) {						$moderation_note = __( 'Your comment is awaiting moderation.', 'twentynineteen' );					} else {						$moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentynineteen' );					}					?> 					<?php if ( '0' === $comment->comment_approved ) : ?>					<p class="comment-awaiting-moderation"><?php echo $moderation_note; ?></p>					<?php endif; ?> 				</footer><!-- .comment-meta -->

Changelog

Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.