WP_Comments_List_Table::comment_type_dropdown() WordPress Method

The WP_Comments_List_Table::comment_type_dropdown() method is used to generate a dropdown menu for comment types. The dropdown menu can be used to filter comments by type.

WP_Comments_List_Table::comment_type_dropdown( string $comment_type ) #

Displays a comment type drop-down for filtering on the Comments list table.


Parameters

$comment_type

(string)(Required)The current comment type slug.


Top ↑

Source

File: wp-admin/includes/class-wp-comments-list-table.php

	protected function comment_type_dropdown( $comment_type ) {
		/**
		 * Filters the comment types shown in the drop-down menu on the Comments list table.
		 *
		 * @since 2.7.0
		 *
		 * @param string[] $comment_types Array of comment type labels keyed by their name.
		 */
		$comment_types = apply_filters(
			'admin_comment_types_dropdown',
			array(
				'comment' => __( 'Comments' ),
				'pings'   => __( 'Pings' ),
			)
		);

		if ( $comment_types && is_array( $comment_types ) ) {
			printf( '<label class="screen-reader-text" for="filter-by-comment-type">%s</label>', __( 'Filter by comment type' ) );

			echo '<select id="filter-by-comment-type" name="comment_type">';

			printf( "\t<option value=''>%s</option>", __( 'All comment types' ) );

			foreach ( $comment_types as $type => $label ) {
				if ( get_comments(
					array(
						'number' => 1,
						'type'   => $type,
					)
				) ) {
					printf(
						"\t<option value='%s'%s>%s</option>\n",
						esc_attr( $type ),
						selected( $comment_type, $type, false ),
						esc_html( $label )
					);
				}
			}

			echo '</select>';
		}
	}


Top ↑

Changelog

Changelog
VersionDescription
5.6.0Renamed from comment_status_dropdown() to comment_type_dropdown().
5.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.