• User Attivo

    NOINDEX in template php

    Ciao a tutti volevo inserire in un template in php il codice per non fare indicizzare la pagina Il codice dovrebbe essere questo : <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"> In che punto lo devo inserire? Il codice di uno dei template è questo :
    <?php include $this->loadTemplate( 'sub_listingDetails.tpl.php' ) ?>

    <table width="100%" cellpadding="4" cellspacing="0" border="0" align="center">
    <tr>
    <td>
    <?php if ($this->mt_show_rating): ?>
    <b><?php echo $this->_MT_LANG->AVERAGE_VISITOR_RATING ?>:</b> <?php echo $this->link->link_rating ?> (<?php echo $this->_MT_LANG->OUT_OF_FIVE ?>)
    <br />
    <?php echo $this->_MT_LANG->NUMBER_OF_RATINGS ?>: <?php echo $this->link->link_votes ?>
    <?php endif; ?>
    </td>
    </tr>
    </table>

    <?php if ($this->mt_show_review) include $this->loadTemplate( 'sub_reviews.tpl.php' ) ?>
    Grazie a tutti