-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
38 lines (28 loc) · 935 Bytes
/
Copy pathsingle.php
File metadata and controls
38 lines (28 loc) · 935 Bytes
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
<?php
require_once get_template_directory() . '/inc/helpers.php';
// SINGLE - Default page for articles
get_header();
if ( have_posts() ){
while( have_posts() ){ the_post();?>
<div class="rad-gruppe"><?php
sak([ 'size' => 'cover' ]); ?>
</div><?php
get_template_part('template-parts/share-icons'); ?>
<div class="rad-gruppe article-wrap">
<article><?php
the_content(null,false); ?>
</article>
</div><?php
}
} ?>
<!--
<div class="rad-gruppe">
<div class="rad-overskrift">Les også</div>
<div class="rad three-split"><?php
//sak(['img' => "https://www.stoffmagasin.no/wp-content/uploads/2022/05/makt-quiz-uten-bakgrunn-scaled.jpg"]);
//sak(['img' => "https://www.stoffmagasin.no/wp-content/uploads/2022/02/endre.png"]);
//sak(['img' => "https://www.stoffmagasin.no/wp-content/uploads/2022/06/trekule_55.jpg"]);
?></div>
</div>
-->
<?php get_footer(); ?>