通过wordpress中的高级自定义字段发布搜索

时间:2016-09-22 08:10:28

标签: php wordpress

我在wordpress中搜索我的帖子时遇到问题。我无法搜索我的帖子,因为我正在使用高级自定义字段,我创建了另一个文本区域。如何使用默认的wordpress搜索栏从预先自定义字段中获取帖子。这是我的搜索。我将文本帖子放在文本区域的自定义字段中。

这是我的搜索代码:

<?php 
                    if( have_posts() ) :
                        while( have_posts() ): the_post(); ?>

                            <?php get_template_part('content', 'search'); ?>

                        <?php endwhile;
                    endif;
?>

这是我的content-search.php

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

    <?php the_title('<h1 class="entry-title">','</h1>'); ?>

    <small><?php the_category(' '); ?> || <?php the_tags(); ?> || <?php edit_post_link(); ?> </small>

    <?php the_excerpt(); ?>

    <hr>
</article>

0 个答案:

没有答案