WordPress 搜索 - Get_Template_Part
我的 search.php 文件引用了以下函数调用:
<?php
/* Run the loop for the search to output the results.
* If you want to overload this in a child theme then include a file
* called loop-search.php and that will be used instead.
*/
get_template_part( 'loop', 'search' );
?>
这一切似乎都可以很好地返回我的搜索结果,但我也想显示我的侧边栏和页脚部分,但这个 get_template_part 似乎覆盖了它。
有什么想法如何在 search.php 文件结果页面中仍然显示我的侧边栏和页脚信息吗?
它似乎有自己的 div 部分,因为我的侧边栏出现在结果集的上方或下方。
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不知道你的问题解决了没。但仅仅为了获得信息,人们可以创建一个搜索页面模板。本法典页面提供了详细信息。
http://codex.wordpress.org/Creating_a_Search_Page#Using_the_page.php
I don't know if your problem got solved or not. But just for the info, one can create a search page template. The details are provided in this codex page.
http://codex.wordpress.org/Creating_a_Search_Page#Using_the_page.php
使用与此类似的自定义 WP 查询(仅检索特定数组中给出的页面):
有关根据您的需求构建它的更多信息,请参阅:http://codex.wordpress.org/Function_Reference/WP_Query
Use a custom WP Query (retrieve only pages given in a specific array) similar to this one:
For more information to build it specific to your needs see: http://codex.wordpress.org/Function_Reference/WP_Query