forked from mindctrl/alienship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
77 lines (60 loc) · 2.74 KB
/
index.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
<?php
/**
* The main template file.
* @package Alien Ship
* @since Alien Ship 0.1
*/
get_header(); ?>
<div id="main-row" 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 if ( have_posts() ) :
if ( of_get_option('alienship_content_nav_above') ) { alienship_content_nav( 'nav-above' ); } // display content nav above posts?
/**
* Featured Posts
*/
if ( of_get_option('alienship_featured_posts') ) {
if ( of_get_option('alienship_featured_posts_display_type',1) == "1" ) {
alienship_featured_posts_slider();
} else {
alienship_featured_posts_grid(); }
/**
* Show or hide featured posts in the main body
*
* Do not duplicate featured posts */
if ( of_get_option('alienship_featured_posts_show_dupes') == "0" ) {
global $wp_query;
$wp_query->set( 'tag__not_in', array( of_get_option( 'alienship_featured_posts_tag' ) ) );
$wp_query->get_posts();
}
/* Duplicate featured posts */
if ( of_get_option('alienship_featured_posts_show_dupes') == "1" ) {
global $wp_query;
$wp_query->set( 'post_status', 'publish' );
$wp_query->get_posts();
}
} // if (of_get_option('alienship_featured_posts') ) ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : 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' ); } // display content nav below posts? ?>
<?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 -->
<?php get_footer(); ?>