我有自定义帖子类型“团队成员”。现在如果我键入一个团队成员名称,它只是向我显示包含所有页面的标题如何使其搜索内容而不仅仅是标题
例如: - 团队成员是约翰,内容是“约翰是bla bla bla,约翰是bla bla。
现在如果我在搜索栏中键入john,它应该显示所有john而不仅仅是标题
<?php
if ( have_posts() ) : ?>
<?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; ?>
搜索内容设置如下“ -
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
<?php if ( 'Artist' === get_post_type() ) : ?>
<div class="entry-meta">
<?php edigital_posted_on(); ?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header><!-- .entry-header -->
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<footer class="entry-footer">
<?php edigital_entry_footer(); ?>
</footer><!-- .entry-footer -->