在标题中,我有以下代码进行元描述。
<meta name="description" content="<?php echo htmlspecialchars($this->getDescription()) ?>" />
我正在尝试将此描述作为我的架构产品描述,如下所示在view.pthml文件中
<meta itemprop="description" name="description" content="<?php echo htmlspecialchars($this->getDescription()) ?>" />
然而,“说明”它在google rich snippets工具(GRST)上显示为空白
当我在head.phtml文件中附上并标记元描述时
<meta itemprop="description" name="description" content="<?php echo htmlspecialchars($this->getDescription()) ?>" />
带有<span itemscope itemtype="Http://Schema.Org/Product" >
的描述显示在GRST上,但当然会破坏view.phtml上的其他产品类型。
那么如何让标题中的描述显示为view.phtml中的架构产品描述?
注意:未使用默认元描述(空白)名为creare SEO的扩展基于属性创建元描述。