This repository was archived by the owner on Apr 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
50 lines (34 loc) · 1.26 KB
/
search.php
File metadata and controls
50 lines (34 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
<div id="content" class="narrowcolumn" role="main">
<div class="loopthepage">
<?php if (have_posts()) : ?>
<h2 class="pagetitle">Sökresultat:</h2>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="cat-color">
<span style="background-color:<?php the_category_color(); ?>"></span><?php the_THS_category($saved_cats); ?>
</div>
<?php the_category_image() ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?
$event = get_post_meta(get_the_ID(),'_isEvent',true);
if($event) : ?>
<div class="eventimage"><span class="monthname"><?php echo $wp_locale->get_month(date("m",$event)) ?></span><span class="monthday"><?php echo date("j",$event) ?></span></div>
<? endif; ?>
<? the_excerpt('L�s mer »'); ?>
</div>
<br class="clear" />
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 >Hittade inget. Sök igen.</h2>
<?php endif; ?>
</div></div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>