如何将搜索框添加到drupal页面内容(404页面)

发布于 2024-11-30 09:02:58 字数 395 浏览 1 评论 0原文

我有一个主题,其中搜索框很难找到。

在重新设计之前,我想向 404 页面添加另一个更大的搜索框。

我找到的唯一解决方案是渲染搜索块:

<?php
$block = module_invoke('search', 'block_view', 97);
print render($block['content']);
?>

这不是一个好的解决方案,因为必须首先找到块号。

如何使用 search_box() 功能正常吗?

I have a theme where search box is hard to find.

Before redesigning it, I'd like to add another, bigger search box to 404 page.

The only solution I found is render search block:

<?php
$block = module_invoke('search', 'block_view', 97);
print render($block['content']);
?>

This is not good solution because one have to find block number first.

How to use search_box() function properly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久伴你 2024-12-07 09:02:58

也许您想尝试使用http://drupal.org/project/search404?我不确定您是否可以在 404 页面上禁用自动搜索,但它非常接近您需要的内容,无需自定义代码。

Maybe you'd want to try using http://drupal.org/project/search404? I'm not sure if you can disable automatic searching on a 404 page but it's very close to what you are needing without custom code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文