Joomla-为JPaginator创建的链接添加一个锚点


Joomla - Add an anchor to the link created by JPaginator

我需要为标准Joomla分页器创建的链接添加一个锚。在某些地方,我工作的网站有很多内容,我希望当我点击分页器时,当页面被重新加载时,能被放在我的列表中。

那么,如何将"site.com/index.php?start=3"转换为"site.com/index.php?start=3#content"呢?

您必须在模板的html文件夹中创建一个pagination.php文件来覆盖默认输出。您可以在templates/protostar/html/pagination.php中的joomla3的protostar模板中找到该文件的一个示例,您可以在其中修改第180行,内容为:

return "<li><a title='"" . $item->text . "'" href='"" . $item->link . "'" class='"pagenav'">" . $display . "</a></li>";

并对其进行类似的修改:$item->link . "#content'"

有关分页链接覆盖的更多信息