View Single Post
Old 2007-05-04, 06:00 PM   #7
NobleSavage
Lord help me, I'm just not that bright
 
Join Date: May 2006
Posts: 103
Send a message via ICQ to NobleSavage
I use a varation of that:

Code:
<?php if( is_home() | is_single() | is_page() ){

if ( $paged < 2) { 

echo '<meta name="robots" content="index,follow" />';
} else {
echo '<meta name="robots" content="noindex,follow" />';
}} else {
echo '<meta name="robots" content="noindex,follow" />';
}?>
If it helps - I don't know.
NobleSavage is offline   Reply With Quote