その記事は Joomla には関係ありません! 2.5。まず、カテゴリ ビューにはメタ ディスクリプションとキーワードが既に含まれています (存在する場合)。view.html.php
if ($this->category->metadesc)
{
$this->document->setDescription($this->category->metadesc);
}
elseif (!$this->category->metadesc && $this->params->get('menu-meta_description'))
{
$this->document->setDescription($this->params->get('menu-meta_description'));
}
if ($this->category->metakey)
{
$this->document->setMetadata('keywords', $this->category->metakey);
}
elseif (!$this->category->metakey && $this->params->get('menu-meta_keywords'))
{
$this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords'));
}
記事のタイトルに見出しタグを追加するセクションにも同じことが当てはまります。
<?php if ($params->get('show_title')) : ?>
<h2>
<?php if ($params->get('link_titles') && !empty($this->item->readmore_link)) : ?>
<a href="<?php echo $this->item->readmore_link; ?>">
<?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2>
<?php endif; ?>
出力が行われる方法を変更したい場合は、テンプレートでテンプレートのオーバーライドを作成する必要がありcom_content
ます。