有人可以帮我解决我的问题吗?我想根据实际页面更改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>
感谢。
答案 0 :(得分:0)
为您的服务器启用PHP,并将您的网页标题捕获到$actual_page_title
等变量中。
然后使用PHP语句回显:
<meta property="og:title" content="<?php echo $actual_page_title; ?>" />