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/template-functions-general.php

    r3518 r3548  
    703703}
    704704
     705function noindex() {
     706    // If the blog is not public, tell robots to go away.
     707    if ( ! get_option('blog_public') )
     708        echo '<meta name="robots" content="noindex,nofollow" />' . "\n";
     709}
    705710?>
Note: See TracChangeset for help on using the changeset viewer.