如何从 Joomla 的 readmore 链接中删除文章标题?
我没有 sh404SEF。
<?php if ($this->item->readmore_register) :
echo JText::_('Register to read more...');
elseif ($readmore = $this->item->params->get('readmore')) :
echo $readmore;
else :
echo JText::sprintf('Read more', $this->escape($this->item->title));
endif; ?>
更改此规则:
echo JText::sprintf('Read more', $this->escape($this->item->title));
至:
echo 'Read More';
也不正确,因为它不是多语言的。
有人知道解决方案吗?