我使用了og:image元标记的PHP代码,但它不起作用,它是正确的,但它没有调用正确的图像源。
<?php JFactory::getDocument(); $document->addCustomTag('<meta property="og:image" content="http://www.sell4masari.com/images/com_adsmanager/ads/<?php.$img->image?>" />');?>
所以我会感激任何人的帮助。
答案 0 :(得分:0)
您将<?php
标记放在引号内,因此未进行处理:
content="[...]/ads/<?php.$img->image?>" />');
您需要通过连接来构建字符串,如下所示:
<?php JFactory::getDocument(); $document->addCustomTag('<meta property="og:image" content="http://www.sell4masari.com/images/com_adsmanager/ads/' . $img->image . '" />');?>