Open Graph meta properties

I’m trying to insert Open Graph properties into the header.php file for a certain theme. I can’t seem to restrict the output to just the item description (rather, the title, subject, and description all get pushed into the description output). I also have trouble getting the item thumbnail to automatically get picked up, so I’m assuming I’m getting that code wrong, too.

Here is the basic command I’m inserting into the HEAD section of the file – can someone help me determine the problem?

    <meta property="og:image" content="<?php echo $image; ?>">
    <meta property=”og:description” content=”<?php echo $description; ?>”/>

This topic was automatically closed 250 days after the last reply. New replies are no longer allowed.