is_comments_popup()WP 1.5.0

Устарела с версии 4.5.0. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.

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.

Хуков нет.

Возвращает

false. Always returns false.

Использование

is_comments_popup();

Список изменений

С версии 1.5.0 Введена.
Устарела с 4.5.0

Код is_comments_popup() WP 6.5.2

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

	return false;
}