我安装了tablepress并创建了一些表作为数据库。我创建了一个名为DEMO的新页面。表名也是DEMO。我在该页面上插入了表格,因为它显示了相关信息。
问题是,在头版,我集成了搜索框。当我们将页面nsme演示放入搜索框并点击搜索时,它会将结果显示为帖子或类似帖子。我希望它使用准确的页面ID只完整显示该页面。
请帮忙,这是搜索结果。php
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php printf( __( \'Search Results for: %s\', \'twentythirteen\' ), get_search_query() ); ?></h1>
</header>
<?php /* The loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', get_post_format() ); ?>
<?php endwhile; ?>
<?php twentythirteen_paging_nav(); ?>
<?php else : ?>
<?php get_template_part( \'content\', \'none\' ); ?>
<?php endif; ?>
</div><!-- #content -->
</div><!-- #primary -->