forked from mindctrl/alienship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
81 lines (71 loc) · 2.96 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/**
* The template for displaying Archive pages.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package Alien Ship
* @since Alien Ship 0.1
*/
get_header(); ?>
<section id="primary">
<div class="row-fluid">
<?php do_action( 'alienship_content_before' ); ?>
<div id="content" role="main" class="<?php echo apply_filters( 'alienship_content_container_class', 'span9' ); ?>">
<?php do_action( 'alienship_archive_page_title' ); ?>
<?php
alienship_archive_sticky_posts(); // sticky post query ?>
<?php if ( have_posts() ) : ?>
<?php rewind_posts(); ?>
<?php if ( of_get_option('alienship_content_nav_above') ) { alienship_content_nav( 'nav-above' ); } ?>
<?php // do the main query without stickies
$sticky = get_option( 'sticky_posts' );
if ( is_category() && ! empty($sticky) ) {
$cat_ID = get_query_var('cat');
$args = array(
'cat' => $cat_ID,
'post_status' => 'publish',
'post__not_in' => array_merge( $do_not_duplicate, get_option( 'sticky_posts' ) ),
'ignore_sticky_posts' => 1,
'paged' => $paged
);
$wp_query = new WP_Query( $args );
}
elseif (is_tag() && ! empty($sticky) ) {
$current_tag = single_tag_title("", false);
$args = array(
'tag_slug__in' => array($current_tag),
'post_status' => 'publish',
'post__not_in' => array_merge( $do_not_duplicate, get_option( 'sticky_posts' ) ),
'ignore_sticky_posts' => 1,
'paged' => $paged
);
$wp_query = new WP_Query( $args );
} else {
new WP_Query();
}
?>
<?php /* Start the Loop */ ?>
<?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
<?php do_action( 'alienship_loop_before' ); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
$format = get_post_format();
if ( false === $format )
$format = 'standard';
get_template_part( '/inc/parts/content', $format ); ?>
<?php do_action( 'alienship_loop_after' ); ?>
<?php endwhile; ?>
<?php if ( of_get_option('alienship_content_nav_below',1) ) { alienship_content_nav( 'nav-below' ); } ?>
<?php else : ?>
<?php /* No results */ get_template_part( '/inc/parts/content', 'none' ); ?>
<?php endif; ?>
<?php do_action( 'alienship_content_after' ); ?>
</div><!-- #content -->
<?php get_sidebar(); ?>
</div><!-- .row-fluid -->
</section><!-- #primary -->
<?php get_footer(); ?>