Drupal 如何在搜索框中添加下拉菜单
默认情况下,我们有 drupal 搜索框,
我想添加一个下拉列表,其中应包含内容类型(如页面,故事,文章)
我知道有很多模块,但我想知道,使用钩子模块,我想要要添加
下拉菜单,
我想仅使用钩子方法来完成
by default we have drupal search box,
i want to add one dropdown , that should contain the content types(like page,story,article)
i know there is a lot of modules, but i want to know, using hook module, i want to add the
dropdown,
i want to do it with only hook methodm
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在主题的 template.php 文件中为搜索表单功能提供预处理。
此处有一个很好的示例。
Try providing a preprocess for the search form function in your theme's template.php file.
There's a nice example of it here.