Search engine not working

时间:2014-12-22 作者:user3098728

如何在搜索引擎的登录页中显示带有标题和摘要描述的结果,并将其作为分页?

如果用户键入单词“loan”,则会显示所有包含loan单词的页面,并且在摘要描述下方会有一个“Read more”链接或按钮?

我在这里看到了一些关于这个问题的帖子/答案,但我忘记了链接。

1 个回复
SO网友:Saikat

您必须创建一个名为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(); ?>

结束

相关推荐

Display WordPress Search

我正在尝试在single上显示当前的WordPress搜索词。php,索引。php和类别。php。。。基本上,当有人搜索某个东西时,我希望WordPress记住最后一个搜索词是什么,并将其显示在我的网站上的任何地方,这是可能的吗?功能get_search_query 仅适用于搜索。php谢谢,乔希