我正在(本地)创建我的网站,并使用初学者主题下划线。我
我创建了一些使用粗体、斜体和其他文本样式的页面,但我注意到Search Results 页面中,显示的页面内容不包含文本样式。
查看此图以更好地了解问题:
我几乎可以肯定,为了定制搜索行为,我必须编辑文件
searchform.php 或
search.php, 但我不知道我要写些什么。
你能帮忙吗?
非常感谢
EDIT
这是我的
search.php
内容:
<?php
/**
* The template for displaying search results pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package sitename
*/
get_header();
?>
<section id="primary" class="content-area">
<main id="main" class="site-main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title">
<?php
/* translators: %s: search query. */
printf( esc_html__( \'Search Results for: %s\', \'sitename\' ), \'<span>\' . get_search_query() . \'</span>\' );
?>
</h1>
</header><!-- .page-header -->
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
/**
* 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 content-search.php and that will be used instead.
*/
get_template_part( \'template-parts/content\', \'search\' );
endwhile;
the_posts_navigation();
else :
get_template_part( \'template-parts/content\', \'none\' );
endif;
?>
</main><!-- #main -->
</section><!-- #primary -->
<?php
get_sidebar();
get_footer();