能否将搜索表单放在我们404页面的顶部?

这样可以吗?

我认为可以通过隐藏底部的 page-not-found-search 组件并设置 display: none,然后使用插件插槽在顶部插入搜索框代码来实现:Using Plugin Outlet Connectors from a Theme or Plugin

您还可以添加一些 CSS 来修改文本区域的宽度。请注意,我并没有真正测试过这些,只是直接在浏览器控制台中尝试了一下。

这是搜索框的代码:

<div class="row">
    <div class="page-not-found-search-top">
      <h2>Search this site</h2>
      <p>
        </p><form action="/search" id="discourse-search">
          <input type="text" name="q" value="">
          <button class="btn btn-primary">Search</button>
        </form>
      <p></p>
    </div>
</div>
3 个赞