privacy_ping_filter()
privacy_ping_filter( mixed $sites ) 在返回站点之前检查博客是否是公共的。C…
privacy_ping_filter( mixed $sites )
在返回站点之前检查博客是否是公共的。
Check whether blog is public before returning sites.
目录锚点:#参数#返回#源码
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$sites | (mixed) | 必需 | 如果博客是公开的,将返回;如果不公开,将不返回。 |
返回(Return)
(mixed)如果blog不是公共的,则返回空string;如果site是公共的,则返回$sites。
源码(Source)
/** * Check whether blog is public before returning sites. * * @since 2.1.0 * * @param mixed $sites Will return if blog is public, will not return if not public. * @return mixed Empty string if blog is not public, returns $sites, if site is public. */ function privacy_ping_filter($sites) { if ( '0' != get_option('blog_public') ) return $sites; else return ''; }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.1.0 | wp-includes/comment.php:2908 | 0 | 1 function |
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!