is_comments_popup()
Deprecated since 4.5.0. It is no longer supported and may 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.
For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.
No Hooks.
Returns
false. Always returns false.
Usage
is_comments_popup();
Changelog
| Since 1.5.0 | Introduced. |
| Deprecated since | 4.5.0 |
is_comments_popup() is comments popup code WP 6.9
function is_comments_popup() {
_deprecated_function( __FUNCTION__, '4.5.0' );
return false;
}