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

时间:2014-04-16 12:10:35

标签: php joomla joomla3.2

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

那么,我该怎么做才能将“site.com/index.php?start=3”转换为“site.com/index.php?start=3#content”?

1 个答案:

答案 0 :(得分:2)

您必须在模板的pagination.php文件夹中创建html文件,以覆盖默认输出。您可以在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\"

有关Pagination Links Overrides

的更多信息