forked from xwolfde/Piratenkleider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loop-author.php
29 lines (21 loc) · 1.75 KB
/
loop-author.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
<?php
$category_description = category_description();
if ( ! empty( $category_description ) )
echo '' . $category_description . ''; ?>
<?php /* If there are no posts to display, such as an empty archive page */ ?>
<?php if ( ! have_posts() ) : ?>
<h1><?php _e( 'Nichts gefunden', 'piratenkleider' ); ?></h1>
<p><?php _e( 'Vielleicht hilft eine Suche weiter?', 'piratenkleider' ); ?></p>
<div class="fullwidth"><?php get_search_form(); ?></div>
<?php endif; ?>
<?php while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'piratenkleider' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<p class="pupdateinfo"><?php piratenkleider_post_pubdateinfo(); ?></p>
<p><?php echo get_piratenkleider_custom_excerpt(); ?></p>
<?php wp_link_pages( array( 'before' => '' . __( 'Seiten:', 'piratenkleider' ), 'after' => '' ) ); ?>
<?php endwhile; // End the loop. Whew. ?>
<?php /* Display navigation to next/previous pages when applicable */ ?>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<?php next_posts_link( __( '← Ältere Beiträge', 'piratenkleider' ) ); ?>
<?php previous_posts_link( __( 'Neuere Beiträge →', 'piratenkleider' ) ); ?>
<?php endif; ?>