I´m creating OpenGraph protocol head descriptions and wanted to fancy up the outputted code to eventually display the (("the description" along with View Collection...)) as an additional trailing linkable word.
The working simple code is this:
<meta property="og:description" content="<?php echo $this->getDescription() ?>"/>
I´ve unsuccessfully used this:
<meta property="og:description" content="<?php echo $this->getDescription() ?> <a href="http://www.example.com">view collection...</a>"/>
Since this meta property tag is within the head, it creates a problem with an a href statement. Is there a proper way for this to be done? Additionally, I think the syntax is wrong.
Any help?