WP_Query::is_comments_popup()publicWP 3.1.0

Deprecated from version 4.5.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Determines whether the current URL is within the comments popup window.

Method of the class: WP_Query{}

No Hooks.

Return

false. Always returns false.

Usage

global $wp_query;
$wp_query->is_comments_popup();

Changelog

Since 3.1.0 Introduced.
Deprecated since 4.5.0

WP_Query::is_comments_popup() code WP 6.4.3

public function is_comments_popup() {
	_deprecated_function( __FUNCTION__, '4.5.0' );

	return false;
}