Dynamically add apple touch icons and canonical URL

PHOTO EMBED

Sat Feb 19 2022 04:16:50 GMT+0000 (Coordinated Universal Time)

Saved by @neelamchaubey28

	// add apple touch icons dynamically and canonical URLs for all pages
    document.head.insertAdjacentHTML("beforeend",
        `<link rel="apple-touch-icon" href="<?php echo $theme_assets_url;?>/img/touch-icon-iphone.png" />
				<link rel="apple-touch-icon" sizes="72x72" href="<?php echo $theme_assets_url;?>/img/touch-icon-ipad.png" />
				<link rel="apple-touch-icon" sizes="114x114" href="<?php echo $theme_assets_url;?>/img/touch-icon-iphone4.png" />
				<link rel="apple-touch-icon" sizes="144x144" href="<?php echo $theme_assets_url;?>/img/touch-icon-retina-ipad.png" />
				<link rel='canonical' href="<?php echo $site_url;?><?php echo basename($_SERVER['PHP_SELF'], '.php')?>" />`
		)
content_copyCOPY