【发布时间】:2010-09-17 16:12:54
【问题描述】:
我的 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 部分,因为我的侧边栏要么出现在结果集的上方或下方。
谢谢。
【问题讨论】:
标签: wordpress wordpress-theming