-
I’m trying to call my meta description into an open graph tag. I can pull the item title and price and such with code like this:
<meta property="og:title" content="<?php the_title(); ?>" />
<meta property="og:price:amount" content="<?php echo get('price'); ?>" />I’d like to do something similar with the meta description, and I’ve tried a lot of variants on this:
`<meta property="og:description" content="<?php echo get('meta_description');?>" />`
but I can’t figure out the right way to do it. Halp?
Thank you!