privacy_ping_filter()
Checks whether blog is public before returning sites.
Хуков нет.
Возвращает
Разное
. Empty string if blog is not public, returns $sites, if site is public.
Использование
privacy_ping_filter( $sites );
- $sites(разное) (обязательный)
- Will return if blog is public, will not return if not public.
Список изменений
С версии 2.1.0 | Введена. |
Код privacy_ping_filter() privacy ping filter WP 6.6.2
function privacy_ping_filter( $sites ) { if ( '0' != get_option( 'blog_public' ) ) { return $sites; } else { return ''; } }