forked from rememberlenny/WooThemes-Canvas-Foundation-Zombie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loop-archive.php
44 lines (35 loc) · 1.09 KB
/
loop-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
<?php
/**
* Loop - Archive
*
* This is the loop logic used on all archive screens.
*
* To override this loop in a particular archive type (in all categories, for example),
* duplicate the `archive.php` file and rename the duplicate to `category.php`.
* In the code of `category.php`, change `get_template_part( 'loop', 'archive' );` to
* `get_template_part( 'loop', 'category' );` and save the file.
*
* Create a duplicate of this file and rename it to `loop-category.php`.
* Make any changes to this new file and they will be reflected on all your category screens.
*
* @package WooFramework
* @subpackage Template
*/
global $more; $more = 0;
woo_loop_before();
if (have_posts()) { $count = 0;
$title_before = '<h1 class="archive_header">';
$title_after = '</h1>';
woo_archive_title( $title_before, $title_after );
?>
<div class="fix"></div>
<?php
while (have_posts()) { the_post(); $count++;
woo_get_template_part( 'content', get_post_type() );
} // End WHILE Loop
} else {
get_template_part( 'content', 'noposts' );
} // End IF Statement
woo_loop_after();
woo_pagenav();
?>