wpseek.com
WordPress开发者和主题制作者的搜索引擎



is_comments_popup › WordPress Function

Since1.5.0
已弃用4.5.0
is_comments_popup ( 没有参数 )
返回:
  • (false) Always returns false.
定义在:
文档:

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.


源码

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

	return false;
}