Definition:
function privacy_ping_filter($sites) {}
Check whether blog is public before returning sites.
Parameters
- mixed $sites: Will return if blog is public, will not return if not public.
Return values
returns:Empty string if blog is not public, returns $sites, if site is public.
Source code
function privacy_ping_filter($sites) { if ( '0' != get_option('blog_public') ) return $sites; else return ''; }
2631
No comments yet... Be the first to leave a reply!