Make WordPress Core


Ignore:
Timestamp:
02/18/2006 07:40:43 AM (19 years ago)
Author:
ryan
Message:

Blog privacy. fixes #2480

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r3535 r3548  
    23822382}
    23832383
     2384function privacy_ping_filter( $sites ) {
     2385    if ( get_option('blog_public') )
     2386        return $sites;
     2387    else
     2388        return '';
     2389}
    23842390?>
Note: See TracChangeset for help on using the changeset viewer.