-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive-page.php
56 lines (41 loc) · 1.2 KB
/
archive-page.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
<?php
/*
Template Name: Archivio_3.0
*/
get_header(); ?>
<!--BEGIN #content -->
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!-- #hentry-wrap -->
<div id="hentry-wrap">
<!--BEGIN .hentry -->
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<!--BEGIN .post-meta .post-header-->
<div class="post-meta post-header">
<h1 class="page-title"><?php the_title(); ?></h1>
<!--END .post-meta post-header -->
</div>
<!--BEGIN .post-content -->
<div class="post-content">
<?php the_content(); ?>
<div class="container">
<ul class="row">
<?php
$next_cat = get_category_by_slug('next');
if (function_exists('put_cat_icons'))
put_cat_icons(wp_list_categories('exclude=1,4,5,6,22,30,31,32,33,34,35,36,37,38&title_li=&echo=0'),'icons_only=true');
else wp_list_categories('title_li');
?>
</ul>
</div>
<!--END .post-content -->
</div>
<!--END .hentry-->
</div>
<?php endwhile; else : ?>
<p><?php _e('No posts found', 'engine'); ?></p>
<?php endif; ?>
</div>
<!-- /#hentry-wrap -->
</div><!-- #content -->
<?php get_footer(); ?>