Geek
Geek

Reputation: 169

How to embed navigation portlet in a jsp in Liferay 7.1?

Is there a way to embed a navigation portlet in custom JSP? I know there is a way in theme to call the portlets but I don't think the same works in JSP.

Thanks

Upvotes: 0

Views: 1228

Answers (1)

Daniele Baggio
Daniele Baggio

Reputation: 2257

Yes, sure.

You have a taglib to embedded a portlet within your custom jsp page, using the correct portlet name.

<liferay-portlet:runtime portletName="com_liferay_site_navigation_menu_web_portlet_SiteNavigationMenuPortlet">
</liferay-portlet:runtime>

Upvotes: 1

Related Questions