-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcategory.php
39 lines (34 loc) · 1.13 KB
/
category.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
<!-- Archivo principal de página de Wordpress -->
<!--Autores: Francisco Javier Castañeda Trujillo-->
<!--CIDWA 2017-->
<?php get_header(); ?>
<!-- Título de categoría -->
<h2><?php single_cat_title(); ?></h2>
<!-- Listado de post -->
<?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 datetime="<?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 Recientes'); ?></span>
</div>
</section>
<?php else : ?>
<p><?php _e ('UPS!, no hay entradas.');?></p>
<?php endif; ?>
<!--Archivo de la barra lateral por defecto -->
<?php get_sidebar(); ?>
<!--Archivo de pié de página de Wordpress-->
<?php get_footer(); ?>