-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.php
32 lines (32 loc) · 1.12 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
<!-- Archivo de cabecera global de Wordpress -->
<?php get_header(); ?>
<!-- Título de categoría -->
<h2><?php single_cat_title(); ?></h2>
<!-- Listado de posts -->
<?php if ( have_posts() ) : ?>
<section>
<?php while ( have_posts() ) : the_post(); ?>
<article>
<header>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<time datatime="<?php the_time('Y-m-j'); ?>"><?php the_time('j F, Y'); ?></time>
<?php the_category (); ?>
</header>
<?php the_excerpt(); ?>
<footer>
<address>Por <?php the_author_posts_link() ?></address>
</footer>
</article>
<?php endwhile; ?>
<div class="pagination">
<span class="in-left"><?php next_posts_link('« Entradas antiguas'); ?></span>
<span class="in-right"><?php previous_posts_link('Entradas más recientes »'); ?></span>
</div>
</section>
<?php else : ?>
<p><?php _e('Ups!, no hay entradas.'); ?></p>
<?php endif; ?>
<!-- Archivo de barra lateral por defecto -->
<?php get_sidebar(); ?>
<!-- Archivo de pié global de Wordpress -->
<?php get_footer(); ?>