-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthor.php
55 lines (39 loc) · 1.44 KB
/
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
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
<?php get_header(); ?>
<section id="main-content" class="container site-body">
<div class="row">
<div class="col-12 col-md-10 offset-md-1">
<?php if (have_posts()): the_post(); ?>
<h1 class="text-center"><?php _e( 'Archivos del blog', 'html5blank' ); ?></h1>
<p class="text-center">Estos son todos los posts que he escrito, ordenados por fecha de manera descendente.</p>
<?php rewind_posts(); while (have_posts()) : the_post(); ?>
<!-- article -->
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- the category -->
<p class="categories">
<span class="small"><?php _e( '', 'html5blank' ); the_category(', '); // Separated by commas ?></span>
</p>
<!-- /the category -->
<!-- post title -->
<h2 class="title">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2>
<!-- /post title -->
<?php include 'includes/post-details.php'; ?>
<!-- <br class="clear"> -->
<?php edit_post_link(); ?>
</article>
<!-- /article -->
<hr>
<?php endwhile; ?>
<?php else: ?>
<!-- article -->
<article>
<h2><?php _e( 'Sorry, nothing to display.', 'html5blank' ); ?></h2>
</article>
<!-- /article -->
<?php endif; ?>
<span class="text-center"><?php get_template_part('pagination'); ?></span>
</div>
</div>
</section>
<?php get_footer(); ?>