-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.php
62 lines (47 loc) · 2.21 KB
/
tag.php
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
51
52
53
54
55
56
57
58
59
60
61
62
<?php get_header(); ?>
<div class="gde-page-outer-wrapper">
<div class="gde-targeted-pages-navigation-wrapper">
<?php wp_nav_menu( array( "theme_location" => "target-meny-sidor", "container_class" => "gde-target-pages-navigation-list" ) ); ?>
</div>
<div class="gde-breadcrumbs-wrapper">
<p><a href="<?php echo home_url(); ?>">Hem</a> / <a href="../../nyheter">Nyheter</a> / Tagg </p>
</div>
<div class="gde-page-wrapper">
<div class="gde-page-content">
<h1>Listar alla inlägg i "<?php echo single_term_title(); ?>" </h1>
<?php query_posts(array( 'post_type' => 'nyheter', 'tag' => get_query_var('tag') )); ?>
<a href="javascript:history.back();">
<div class="gde-back-to-page-first"><img src="<?php bloginfo('template_directory'); ?>/assets/icons/long-arrow-left-light.svg" class="back-icon" alt="Tillbaka-pil" /><p>Tillbaka</p></div>
</a>
<div class="gde-news-page-wrapper row">
<div class="gde-news-page-col col-lg-8">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="gde-news-page-module">
<div class="gde-news-page-thumbnail">
<?php echo get_the_post_thumbnail($recent['ID'],'large') ?>
</div>
<div class="gde-news-page-date">
<?php echo 'Den ' . get_the_date('j F Y') . ' kl. ' . get_the_date('H:i'); ?>
</div>
<h2><a href="<?php the_permalink(); ?>" title="Läs"><?php the_title(); ?></a></h2>
<div class="gde-news-page-content">
<?php the_content(); ?>
</div>
<div class="gde-news-page-tags">
<?php the_tags('Taggat i: ', ', '); ?>
</div>
</div>
<div class="gde-news-page-divder">
<hr class="gde-divider" />
</div>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
<div class="gde-news-page-sidebar-wrapper gde-news-page-col col-lg-3">
</div>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>