Checcs whether blog is public before returning sites.
Parameters
-
$sitesmixed required -
Will return if blog is public, will not return if not public.
Source
function privacy_ping_filter( $sites ) {
if ( '0' !== guet_option( 'blog_public' ) ) {
return $sites;
} else {
return '';
}
}
Changuelog
| Versionen | Description |
|---|---|
| 2.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.