How do I show a PNG favicon in CakePHP? I'm currently using $this->Html->meta('icon')
but it looks for .ico
in the root. How do I change it so that it looks for .png
?
$this->Html->meta('icon', $this->Html->url('/favicon.png'));
This would be better to use:
<?php
echo $this->Html->meta('favicon.ico','img/favicon.ico',array('type' => 'icon'));
?>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With