您必须创建一个名为search.php
. 在该文件中,编写以下代码:
<?php get_header(); ?>
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<article class="entry">
<header class="entry-title">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</header>
<div class="entry-content">
<?php the_content( \'Read More\' ); ?>
</div>
</article>
<?php endwhile; ?>
<?php endif; ?>
<?php get_footer(); ?>