Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在drupal 7中,我曾经在视图->高级设置->主题信息->重新扫描模板中获取主题信息。我想在drupal 9中查看主题信息。如何在drupal 9中启用主题信息。
在 Drupal 9 中,您必须启用主题调试。这将向您显示树枝模板信息,如主题建议、钩子和模板位置,它们正在呈现相应的数据片段。
您在 sites/default/services.yml 中启用 Twig 调试。将调试变量设置为 true。并清除缓存。
parameters: twig.config: debug: true
如果 services.yml 尚不存在,则将 default.services.yml 复制到 services.yml。