14 lines
396 B
PHP
14 lines
396 B
PHP
|
|
<ul class="search-results-list">
|
|
<?php /* Start the Loop */ ?>
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
|
|
<li id="post-<?php the_ID(); ?>">
|
|
<a class="marker-links-js search-line" rel="<?php the_ID(); ?>">
|
|
<?php the_title(); ?>
|
|
</a><!-- .entry-header -->
|
|
</li><!-- #post-<?php the_ID(); ?> -->
|
|
|
|
<?php endwhile; ?>
|
|
</ul>
|