元标记问题

时间:2014-01-29 20:06:57

标签: php html meta-tags

我知道有很多方法可以将关键字放入网站。我在我的index.php中,这就是我所看到的

<meta name="keywords" content="<?=$keywords?>">
<meta name="description" content="<?=description?>">

我在哪里放置关键字?我会删除?=$和第二个吗?

谢谢大家。

麦克

2 个答案:

答案 0 :(得分:1)

您的关键字应位于PHP变量$keywords中,例如

<?php 

$keywords = "php html meta-tags";
$description = "Issue with meta tags";

?>

<meta name="keywords" content="<?= $keywords ?>">
<meta name="description" content="<?= $description ?>">

您在说明行中也遗漏了$

使用<?=要求您启用PHP short_open_tags选项。如果您没有该选项,请写下:

<?php echo $keywords; ?>

答案 1 :(得分:0)

只需将您的代码更改为

即可
<?php

 // some PHP-code, e.g. defining $keywords and $description

?>

<meta name="keywords" content="<?php echo $keywords; ?>">
<meta name="description" content="<?php echo $description; ?>">