WordPress Version: 5.5
/**
* Determines whether the current URL is within the comments popup window.
*
* For more information on this and similar theme functions, check out
* the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
* Conditional Tags} article in the Theme Developer Handbook.
*
* @since 1.5.0
* @deprecated 4.5.0
*
* @return false Always returns false.
*/
function is_comments_popup()
{
_deprecated_function(__FUNCTION__, '4.5.0');
return false;
}