Questions tagged «open-graph»

5
手动安装Open Graph标签
我正在尝试在我的网站上手动添加opengraph。我找到了该教程,它的工作原理很吸引人……但仅适用于Facebook。您可以在此处查看该教程:http://naileditdesign.com/facebook-open-graph-meta-tags-in-magento/。我希望它也可以在Pinterest上使用,但是它缺少一些关键方面,例如价格和货币标签。您知道我可以添加哪些代码行,以便它也可以在pinterest上使用,而不仅仅是在facebook上。 <?php /* Open Graph Protocol for Facebook and SEO START */ ?> <?php if(Mage::registry('current_product')): ?> <?php $product = Mage::registry('current_product'); ?> <meta property="og:title" content="<?php echo ($product->getName()); ?>" /> <meta property="og:type" content="product" /> <meta property="og:image" content="<?php echo $this->helper('catalog/image')->init($product, 'small_image')->resize(200,200);?>" /> <meta property="og:url" content="<?php echo Mage::registry('product')->getProductUrl(); ?>" /> <meta property="og:description" content="<?php echo …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.