-
Notifications
You must be signed in to change notification settings - Fork 14
/
content-frontloop.php
52 lines (28 loc) · 1.83 KB
/
content-frontloop.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
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix frontloop'); ?> role="article">
<?php if ( has_post_thumbnail() ): ?>
<a href="<?php the_permalink(); ?>" class="postimglist"><?php the_post_thumbnail('medium'); ?></a>
<?php endif; ?>
<?php do_action('kr8_content_vor_article_footer'); ?>
<footer class="article-footer">
<?php do_action('kr8_content_im_article_footer1'); ?>
<p class="pseudobyline"><?php the_category(', '); ?></p>
<?php do_action('kr8_content_im_article_footer2'); ?>
</footer>
<?php do_action('kr8_content_nach_article_footer'); ?>
<?php do_action('kr8_content_vor_article_header'); ?>
<header class="article-header">
<?php do_action('kr8_content_im_article_header1'); ?>
<h1 class="h2"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<?php do_action('kr8_content_im_article_header2'); ?>
</header>
<?php do_action('kr8_content_nach_article_header'); ?>
<?php do_action('kr8_content_vor_article_content'); ?>
<section class="entry-content">
<?php do_action('kr8_content_im_article_content1'); ?>
<?php the_excerpt(); ?>
<?php do_action('kr8_content_im_article_content2'); ?>
<p><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>" class="readmore">Weiterlesen »</a></p>
<?php do_action('kr8_content_im_article_content3'); ?>
</section>
<?php do_action('kr8_content_nach_article_content'); ?>
</article>