Facebook分享我做:動態文本
$fb = "http://www.facebook.com/sharer.php?t=".$title."&u=".$url;
該行是一個while循環正從數據庫裏面的結果。 $ url始終是相同的,但$ title會根據行更改。
現在我建立的聯繫,當我點擊他們,他們總是在我的牆上展示從我的主頁上
<meta name="title" content=''>
文本,而不是$標題文本。
我該如何解決這個問題並共享$ title中包含的文本?
這裏的代碼,我試着用og。擊中鏈接在我腳下的份額文本是「谷歌」,而不是什麼是我的變量之後:
<?php
$tt = "Some text in the meta";
$url_p = "http://www.google.com";
$url = urlencode($url_p);
$text = "Text I want to show";
$title = urlencode($text);
$fb = "http://www.facebook.com/sharer.php?t=".$title."&u=".$url;
?>
<meta property="og:title" content="<?php echo $tt; ?>"/>
<a href="<?php echo $fb; ?>">share link</a>
可能重複[分享至Facebook,標題不共享(http://stackoverflow.com/questions/4863454/facebook-share-title-not-shared) – ifaour
查看我在上述問題中的答案。 – ifaour
我編輯了我的初始文章,請使用Google示例查看代碼。我是否可以接受它?再次感謝 – user712027