我是PHP编程的新手,我有一个需要一些SEO的网站。它是一个PHP站点,文件是.tpl。对于它的描述,它有
<meta name="description" content="<?php echo $description; ?>" />
如何在不破坏PHP的情况下对描述和关键字进行硬编码?
答案 0 :(得分:1)
我认为使用包含元信息的数组可能是合适的。
$meta = array();
$meta["description"] = 'My site';
foreach($meta as $key => $value)
{
echo '<meta name="'.$key.'" content="'.$value.'"/>';
}
答案 1 :(得分:0)
您可以在包含模板之前定义$ description(以及.php文件中您喜欢的任何变量)。 例如:
$description = 'My site';
$keywords = 'my, site';
// the code to include the template