Meta Keywords? - Joomla! Forum - community, help and support


i want know if can meta keywords?

i want use same keywords everypage on site. have adsense on pages , changes when don't want , don't want edit keywords everypage.

i'm guessing html of theme uses code pull out different meta keywords in site. can replace code regular meat code , use pages?

here html of theme using:

code: select all

<?php
defined( '_valid_mos' ) or die( 'direct access location not allowed.' );
// needed seperate iso number language file constant _iso
$iso = explode( '=', _iso );
// xml prolog
echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>';
?>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
if ( $my->id ) {
   initeditor();
}
?>
<meta http-equiv="content-type" content="text/html; <?php echo _iso; ?>" />
<?php mosshowhead(); ?>
<link rel="stylesheet" type="text/css" href="<?php echo $mosconfig_live_site; ?>/templates/cleangreen/css/template_css.css" />
</head>
<body>
<table class="mainpage" width="800" border="0" align="center" cellpadding="0" cellspacing="0">
   <tr>
      <td valign="top"><img src="<?php echo $mosconfig_live_site;?>/templates/cleangreen/images/header.gif" border="0" height="160" width="800"/></td>
   </tr>
   <tr>
      <td width="800" valign="top">
         <table width="800" border="0" cellpadding="0" cellspacing="0">
            <tr>
               <td valign="top" width="24" style=" background-repeat: repeat-y;" background="<?php echo $mosconfig_live_site;?>/templates/cleangreen/images/left_shadow.jpg"></td>
               <td valign="top" width="754">
                  <table width="754" border="0" cellpadding="0" cellspacing="0">
                     <tr>
                        <td class="pathway" valign="middle" width="754" colspan="3"><?php mospathway(); ?></td>
                     </tr>
                     <tr>
                        <td width="160" valign="top" class="left"><?php mosloadmodules ( 'left' ); ?></td>
                        <td valign="top" class="main" ><?php mosmainbody();?></td>
                        <?php if(moscountmodules('right')) { ?>
                        <td width="160" valign="top" class="right"><?php mosloadmodules ( 'right' ); ?></td>
                        <?php } ?>
                     </tr>
                  </table>
               </td>
               <td valign="top" width="22" style=" background-repeat: repeat-y;" background="<?php echo $mosconfig_live_site;?>/templates/cleangreen/images/right_shadow.jpg"></td>
            </tr>
         </table>
      </td>
   </tr>
   <tr>
   <td valign="top"><table border="0" cellpadding="0" cellspacing="0" v><tr>
      <td width="55" height="69"><img src="<?php echo $mosconfig_live_site;?>/templates/cleangreen/images/bottom_left.jpg" border="0" height="69" width="55"/></td>
      <td valign="top" height="69" width="685" style=" background-repeat: repeat-x;" background="<?php echo $mosconfig_live_site;?>/templates/cleangreen/images/bottom_back.jpg"></td>
      <td width="60" height="69"><img src="<?php echo $mosconfig_live_site;?>/templates/cleangreen/images/bottom_right.jpg" border="0" height="69" width="60"/></td>
   </tr></table></td>
   </tr>
</table>
</body>
</html>


what need take out , need add?






Comments