"> "> -6ren">
gpt4 book ai didi

php - 如何在 Twitter Card 中传递动态图像路径?

转载 作者:搜寻专家 更新时间:2023-10-31 22:04:06 26 4
gpt4 key购买 nike

我正在使用

<?php $image='http://abc.in/def.jpg'; ?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="twitter:card" content="summary">
<meta name="og:image" content="<?php echo $image?>">
<meta name="og:description" content="<?php echo $description; ?>">
<meta name="og:title" content="<?php echo $title; ?>">
<meta name="twitter:url" content="http://keyss.in">
<meta name="twitter:app:id:iphone" content="">
<meta name="twitter:app:id:ipad" content="">
<meta name="twitter:app:id:googleplay" content="">
<meta name="twitter:app:url:iphone" content="">
<meta name="twitter:app:url:ipad" content="">
<meta name="twitter:app:url:googleplay" content="">
</head>
</html>

我的 Twitter 帖子的代码。

当我在 <meta name="og:image" content="http://abc.in/def.jpg"> 中传递静态内容时图片发布在我的 Twitter 墙上,但如果我将变量传递为 <meta name="og:image" content="<?php echo $image?>">图片没有张贴在我的墙上。

如何在图片内容中传递动态变量?

最佳答案

$image 后缺少的分号可能是问题所在(如评论中所述):

    <meta name="og:image" content="<?php echo $image; ?>">
<meta name="og:description" content="<?php echo $description; ?>">
<meta name="og:title" content="<?php echo $title; ?>">

修复代码后,通过 Twitter Card validator 运行页面以确保一切正确显示。它应该能让您了解出了什么问题。

关于php - 如何在 Twitter Card 中传递动态图像路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22243526/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com