如何使用块显示搜索结果?

时间:2020-03-31 作者:Joshua Jarman

我们正在一个新的古腾堡网站上使用搜索古腾堡块作为搜索表单,但无法确定在搜索结果页面上使用哪个块来显示搜索结果?

https://github.com/WordPress/gutenberg/pull/13583

Using This Form

此图中的步骤1很简单,无法理解结果显示部分。使用slug search在gutenberg块模板上使用哪个块来显示搜索结果?我们可以在执行任何搜索时获得一个要渲染的块模板,但无法根据该搜索查询显示结果网格/列表的块。

1 个回复
SO网友:Will

到目前为止,这是不可能的;您仍然必须按照旧的方式将搜索结果的模板设计为php页面。

正在进行开发a query block 这将解决您的问题,并提供一种插入搜索结果的方法。

相关推荐

Live search by custom tag

实时搜索:$the_query = new WP_Query( array( \'s\' => esc_attr( $_POST[\'keyword\'] ), \'post_type\' => \'custom_type\', \'sentence\' => \'true\' )); if( $the_query->have_posts() ) : while( $the_query->have_posts() ): $the_query->t