-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.php
41 lines (33 loc) · 1.06 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
40
41
<?php
/**
* The template for displaying Category Archive pages.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
get_header(); ?>
<div id="main" class="left-align">
<div id="container">
<div id="content">
<div class="post" id="post">
<div id="left-post-content">
<h2 class="titulo-archivo">
<?php printf( __( 'Artículos de la categoría: %s', 'twentyten' ), '<span>' . strtolower(single_cat_title( '', false )) . '</span>' ); ?>
</h2>
<?php
/* Run the loop for the tag archive to output the posts
* If you want to overload this in a child theme then include a file
* called loop-tag.php and that will be used instead.
*/
get_template_part( 'loop', 'archive' );
?>
<div id="div-paginacion-archivo">
<div class="separator-h">
<hr />
</div><!-- end separator-h -->
<div id="div-paginacion-archive"><?php wp_pagenavi(); ?></div>
</div>
</div><!-- end left-post-content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>