Search bar never finds any posts
-
Hi, i’ve tried searching for answers but nothing seems to help me. My search bars never produce any results – ever. Could anyone please take a look at my search.php and tell me the problem – thanks in advance:
<?php get_header(); ?> <div class="main"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <!-- Start: Post --> <div <?php post_class(); ?>> <h2><a>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a> <?php edit_post_link(__('Edit this entry', 'black_with_orange'), '', ''); ?></h2> <p class="post-meta"><span class="date"><?php the_time( get_option( 'date_format' ) ) ?></span> <span class="author"><?php the_author() ?></span> <span class="cats"><?php the_category(", "); ?></span><?php if ( comments_open() ) : ?>, <span class="comments"><?php comments_popup_link('0', '1', '%'); ?></span> <?php endif; ?></p> <?php the_post_thumbnail(); ?> <?php the_content(); ?> <p class="more"><a>"><?php _e( ' ', 'black_with_orange' ); ?></a></p> <?php if(has_tag()): ?><p class="tags"><span><?php the_tags(""); ?></span></p><?php endif; ?> </div> <!-- End: Post --> <?php endwhile; ?> <p class="pagination"> <span class="prev"><?php next_posts_link(__('Previous Posts', 'black_with_orange')) ?></span> <span class="next"><?php previous_posts_link(__('Next posts', 'black_with_orange')) ?></span> </p> <?php else : ?> <h1><?php _e( 'No posts found. Try a different search?', 'black_with_orange' ); ?></h1> <?php get_search_form(); ?> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
[Moderator Note: Please post code or markup snippets between backticks or use the code button. Or better still – use a pastebin. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Search bar never finds any posts’ is closed to new replies.