privacy_ping_filter( mixed $sites ): mixed

In this article

Checks whether blog is public before returning sites.

Parameters

$sitesmixedrequired
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.

Source

function privacy_ping_filter( $sites ) {
	if ( '0' != get_option( 'blog_public' ) ) {
		return $sites;
	} else {
		return '';
	}
}

Changelog

VersionDescription
2.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.