mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/tags/buddypress-theme@425 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php if (have_posts()) : ?>
|
|
|
|
<h2>Search Results</h2>
|
|
|
|
<div class="navigation">
|
|
<div><?php next_posts_link('« Older Entries') ?></div>
|
|
<div><?php previous_posts_link('Newer Entries »') ?></div>
|
|
</div>
|
|
|
|
|
|
<?php while (have_posts()) : the_post(); ?>
|
|
|
|
<div class="post">
|
|
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
|
|
<p><?php the_time('l, F jS, Y') ?></p>
|
|
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
|
|
</div>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<div class="navigation">
|
|
<div><?php next_posts_link('« Older Entries') ?></div>
|
|
<div><?php previous_posts_link('Newer Entries »') ?></div>
|
|
</div>
|
|
|
|
<?php else : ?>
|
|
|
|
<h2>No posts found. Try a different search?</h2>
|
|
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php get_sidebar(); ?>
|