是的 您可以创建一个新视图。
它很简单,只需从您的 com_content 复制任何视图(类别、博客)。
文件结构应该像文件夹内一样。
Step 1
view.html.php
tmpl
your layout names(default.php)
xml file.
Also remember to change the class name of the view.html.php
Step 2
Add a controller file (just make a copy of existing one category or blog)
Controller name must be your new view folder name.
Also remember to change the class name of the controller
step 3
add a model file for your new view (same make copy of any existing)
remember to change the class name and file name should be view folder name.
然后,您可以通过提供正确的 url 来访问此视图。例如:www.example.com/index.php?option=com_content&view=yourviewname&layout=yourlayoutnames。
这里我提到的视图文件夹名称必须是控制器和模型文件名,我们也可以用其他名称来实现,但是当你不擅长 joomla 时,它会给你带来问题。
注意:要添加视图,您不需要安装组件,这根本不是一个好主意。
此外,您可以在 tmpl 文件夹内的视图中添加多个布局,只需创建新文件。也不要错过将控制器和模型放入 com_contents/controller 和 com_contents/model 文件夹
如需更多帮助,请查看此