> WordPress开发手册 > 搜索页模版调用

搜索页模版调用


功能实现

在/wp-content/themes/shouce下新建search.PHP内容如下:

<?php get_header(); ?>
<div class="c">
	<div class="cat-title">搜索词:<?php echo get_search_query(); ?></div>
</div>
<div class="c">
	<div id="left-box">
		<div id="post-box">
		<?php
		get_template_part ( 'content' );
		?>
		</div>
	</div>
	<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>

效果图

搜索页模版调用