WordPress搜索结果未显示

时间:2016-02-05 10:46:13

标签: wordpress search

我正在使用裸字按主题来构建我的网站,除了我使用搜索栏之外,它一切都很好用。我输入了我的搜索,它将我带到了我的主页版本,但没有任何内容。

如何显示搜索结果?

1 个答案:

答案 0 :(得分:0)

创建一个search.php并以此代码为例。



@Override
public void onDettach(final UsbDevice device) {
    if (DEBUG) Log.v(TAG, "OnDeviceConnectListener#onDettach:");
    try {
        if (mCameraClient != null) {
            mCameraClient.disconnect();
            mCameraClient.release();
            mCameraClient = null;
        }
        updateCameraDialog();
    } catch (Exception ex) {
        Log.e("Exception occurred", ex);
    }
}




确保您的searchform.php符合Wordpress的标准,这是一个例子。

<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
	<h1>Search Result for <?php /* Search Count */ $allsearch = &new WP_Query("s=$s&showposts=-1"); $key = wp_specialchars($s, 1); $count = $allsearch->post_count; _e(''); _e('<span class="search-terms">'); echo $key; _e('</span>'); _e(' &mdash; '); echo $count . ' '; _e('acapellas'); wp_reset_query(); ?></h1>
	<ul>
	<?php while (have_posts()) : the_post(); ?>
		<li>
			<h2><?php the_title(); ?></h2>
			<p><?php the_excerpt(); ?></p>
		</li>
	<?php endwhile; endif; ?>
	</ul>
</div>
<?php get_footer(); ?>