Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how to add Facebook, Google+ and twitter like/share button on my website, to sharing details of my website. because, i tried the following code in my website for google+. But, it's only sharing my website pic not the description and title of my website

<meta itemprop="name" content="MySMSBuddy">
<meta itemprop="description" content="Description of my webpage">
<meta itemprop="image" content="http://eravikant.com/images/image.png">

<script type="text/javascript">
  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
</script>

Any help and idea will be appreciated !!!

share|improve this question
Have you done a search for these, such as "Google+ button" or "Facebook Like button" on StackOverflow? Those very simple queries come up with a whole slew of previously asked questions. I imagine you could get a lot of help from reading some of those. – Kevek Sep 6 '11 at 17:16
i searched.. but, my problem is, when i'm trying to share my website details using google+ it's only showing pic not title and description of my website. – cool_ravi Sep 6 '11 at 17:21

1 Answer

up vote 3 down vote accepted

Those sites use the title tag for page title, and meta name="description" for description (not itemprop="description".

<title>Title of your page</tile>
<meta name="description" content="Description of your page" /> 

For Facebook, you can also use open graph meta tags:

 <meta property="og:title" content="Title"/>
 <meta property="og:description" content="Description"/>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.