Drupal:修改默认主页以从节点中剥离 html
我的节点显示为“升级到主页”。节点主体可以包含基本的 html,这对于该节点页面来说很好,但不适用于主页。有什么方法可以修改它以去除任何 html 标签吗?
谢谢,
琼斯
I have nodes being displayed as 'promoted to homepage'. The nodes body can contain basic html which is fine for that nodes page but when not for the homepage. Is there any way to modify this to strip any html tags?
Thanks,
Jonesy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
处理此问题的常见方法是将默认主页替换为视图模块中的视图。
只需创建一个视图来列出节点(标题/正文/发布日期/其他),按“升级到首页”进行过滤,然后选中正文字段的“strip html”复选框。
The common way to handle this would be to just replace the default home page with a view from the Views module.
Just create a view to list nodes (title/body/post date/whatever), filter by "promote to front page", and check the "strip html" checkbox for the body field.
您可以在主题模板中处理此问题。在主题文件夹中,创建或编辑node.tpl.php。它需要是什么样子取决于您的节点模板具体包含什么内容,但是使用默认模板它会是这样的:
注意,我根本没有测试过这个,但是如果您的主题使用默认节点模板(你的主题中没有node.tpl.php),那么你应该能够将其放入。
关键行是:
You can handle this in the theme template. In your theme folder, create or edit node.tpl.php. What it will need to look like will depend on what specifically your node template contains, but with the default template it would be something like this:
Note, I haven't tested this at all, but if your theme is using the default node template (there is no node.tpl.php in your theme), then you should be able to just drop this in.
The key line is: