I want to know if I can do this with my Meta Keywords?
I want to just use the same keywords for everypage on my site. I have adsense on all the pages and it changes when I don't want it to and I don't want to edit keywords with everypage.
I'm guessing the html of my theme uses a code to pull out the different meta keywords in my site. Can I just replace that code with just a regular meat code and use that for all my pages?
Here is the html of my theme that I am using:
Code:
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
// needed to seperate the ISO number from the 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 would I need to take out and what would I need to add?