我的社交媒体元标记不起作用

时间:2020-03-08 04:13:08

标签: php html meta-tags meta

我根据 metatags.io 网站创建了元标记。

我根据需要添加了php。可以,可以显示数据。查看源代码,我可以看到数据正在显示在meta标记内。

当我共享与社交媒体的页面链接时,它会显示 404未找到作为网址说明。 URL正常工作。

<!-- Primary Meta Tags -->
<title>Hello</title>
<meta name="title" content="NAME">
<meta name="description" content="<?php echo $row['headline'] ?>">

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="<?php echo "https://domain.go/single.php?id=". $id;?>">
<meta property="og:title" content="NAME">
<meta property="og:description" content="<?php echo $row['headline'] ?>">
<meta property="og:image" content="<?php echo 'http://domain.go/images/'.$row['image']; ?>">

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="<?php echo "https://domain.go/single.php?id=". $id;?>">
<meta property="twitter:title" content="Name">
<meta property="twitter:description" content="<?php echo $row['headline'] ?>">
<meta property="twitter:image" content="<?php echo 'http://domain.go/images/'.$row['image']; ?>">

0 个答案:

没有答案