soundmap_theme/loop-results.php
2016-11-29 01:18:17 +01:00

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>