Replace Default Meta Tag with Custom Meta Tags in HTML



Meta tags are used to store data about HTML documents such as who wrote it and the description of the document.
The best solution is to define default tags in the application and overwrite default parameters in view. We can do so in PHP.

Making changes in config file first −

<?php
return [  
   ‘addemailid’ =>’ [email protected]’,  
   ‘descrip’=>’docdescription’
];

Making changes in the layout −

<?php
   $this->registerMetaTag($app->params[‘ademailid’], ‘ademailid’);
   $this->registerMetaTag($app->params[‘descrip’],’ descrip’);
?>
Updated on: 2020-06-24T13:57:50+05:30

208 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements