如果 url 是商店,则添加部分

Add Section if url is shop

我正在我的网站上工作,但我在网站上使用了一些通用模板对于任何以商店开头的页面,我想添加一个 HTML 部分,告诉我如何在 URL 如果页面 URL 是商店,则该部分将仅出现

You can get the Craft URL segments and then manage them with an if the condition.

`{% set pageUrl = craft.app.request.pathinfo %}
    {% if pageUrl == "shop" %}
{% endif %}`