Magento – Magento 2 : How to add custom meta tag in head

headmagento-2.1meta-tagsopen-graph

How to add custom meta tag in head tag of page-layout-2columns-left

custom meta tag l want to add is

<meta property="og:image" itemprop="image" content="url"/>

P.S.

I want this url to be dynamic which change on page to page.

Best Answer

You can do it by update page_layout/2columns-left.xml

<?xml version="1.0"?>
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_layout.xsd">
  <head>
    <meta property="og:image" itemprop="image" content="url"/>
  </head>
.......
.......
</layout>
Related Topic