wpseek.com
A WordPress-centric search engine for devs and theme authors



is_comments_popup › WordPress Function

Since1.5.0
Deprecated4.5.0
is_comments_popup ( No parameters )
Returns:
  • (false) Always returns false.
Defined at:
Codex:

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

For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Source

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

	return false;
}