Changeset 3885 for trunk/wp-includes/general-template.php
- Timestamp:
- 06/17/2006 11:38:45 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r3878 r3885 695 695 696 696 function rsd_link() { 697 echo ' <link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . get_bloginfo('wpurl') . "/xmlrpc.php?rsd\" />\n";697 echo ' <link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . get_bloginfo('wpurl') . "/xmlrpc.php?rsd\" />\n"; 698 698 } 699 699 700 700 function noindex() { 701 701 // If the blog is not public, tell robots to go away. 702 if ( !get_option('blog_public') )703 echo '<meta name="robots" content="noindex,nofollow" />' . "\n";702 if ( '0' == get_option('blog_public') ) 703 echo "<meta name='robots' content='noindex,nofollow' />\n"; 704 704 } 705 705
Note: See TracChangeset
for help on using the changeset viewer.