wp_admin_bar_comments_menu() WordPress Function
The wp_admin_bar_comments_menu() function displays a menu with links to manage comments in the WordPress admin bar. The menu includes links to add a new comment, edit comments, and view comments. The function is located in the WordPress core file wp-admin/includes/class-wp-admin-bar.php.
wp_admin_bar_comments_menu( WP_Admin_Bar $wp_admin_bar ) #
Adds edit comments link with awaiting moderation count bubble.
Parameters
- $wp_admin_bar
- (WP_Admin_Bar)(Required)The WP_Admin_Bar instance. 
Source
File: wp-includes/admin-bar.php
function wp_admin_bar_comments_menu( $wp_admin_bar ) {
	if ( ! current_user_can( 'edit_posts' ) ) {
		return;
	}
	$awaiting_mod  = wp_count_comments();
	$awaiting_mod  = $awaiting_mod->moderated;
	$awaiting_text = sprintf(
		/* translators: %s: Number of comments. */
		_n( '%s Comment in moderation', '%s Comments in moderation', $awaiting_mod ),
		number_format_i18n( $awaiting_mod )
	);
	$icon   = '<span class="ab-icon" aria-hidden="true"></span>';
	$title  = '<span class="ab-label awaiting-mod pending-count count-' . $awaiting_mod . '" aria-hidden="true">' . number_format_i18n( $awaiting_mod ) . '</span>';
	$title .= '<span class="screen-reader-text comments-in-moderation-text">' . $awaiting_text . '</span>';
	$wp_admin_bar->add_node(
		array(
			'id'    => 'comments',
			'title' => $icon . $title,
			'href'  => admin_url( 'edit-comments.php' ),
		)
	);
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 3.1.0 | Introduced. |