-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy patharchive.php
executable file
·63 lines (44 loc) · 1.26 KB
/
archive.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
56
57
58
59
60
61
62
63
<?php get_header(); ?>
<div id="content">
<div class="wrap">
<div id="main">
<div class="stream">
<h5><?php single_cat_title(); ?></h5>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post tarjeta">
<div class="pic">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('320x210'); ?>
</a>
</div>
<div class="texto">
<span class="meta"><?php the_time( 'j \d\e F \d\e Y '); ?></span>
<h4 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
</div>
<div class="clearfix"></div>
</div>
<?php endwhile; ?>
<?php else: ?>
<?php endif; ?>
</div>
<!-- Paginador -->
<div class="wp-pagenavi">
<?php
global $wp_query;
$big = 999999999;
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages
) );
?>
</div>
</div>
<!-- Sidebar -->
<?php get_sidebar(); ?>
<div class="clearfix"></div>
</div>
</div>
<div class="clearfix"></div>
<?php get_footer(); ?>