I was under the impression that itemprop="whatever" in php template files were being dropped in J5 in favour of schema.org implementation.
Why then, in the recent J5.1.0 update does the templates/cassiopeia/html/com_content/article/default.php now include itemprop="language"?
Line 38 used to be this:but now it's this:
Why then, in the recent J5.1.0 update does the templates/cassiopeia/html/com_content/article/default.php now include itemprop="language"?
Line 38 used to be this:
Code:
<meta content="<?php echo ($this->item->language === '*') ? Factory::getApplication()->get('language') : $this->item->language; ?>">
Code:
<meta itemprop="inLanguage" content="<?php echo ($this->item->language === '*') ? Factory::getApplication()->get('language') : $this->item->language; ?>">
Statistics: Posted by GillianBPP — Sun Apr 21, 2024 11:49 am