1

有人可以帮我解决我的问题吗?我想根据实际页面更改 facebook 元标记。我尝试过类似的方法,但它不起作用......

<head>
<script type="text/javascript">
window.document.write('<meta property="og:title" content="actual page title"/>');
</script>
<meta property="og:image" content="http://foto.mrsoft.cz/main.php?g2_view=core.DownloadItem&g2_itemId=10843&g2_serialNumber=2"/>
</head>

谢谢。

4

1 回答 1

0

为您的服务器启用 PHP 并将您的页面标题捕获到一个变量中,例如$actual_page_title.

然后使用 PHP 语句回显:

 <meta property="og:title" content="<?php echo $actual_page_title; ?>" />
于 2012-05-09T15:44:33.397 回答