forked from TamerShlash/Sampression-Lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
78 lines (62 loc) · 1.94 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
78
<?php
// Exit if accessed directly
if ( !defined('ABSPATH')) exit;
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package Sampression-Lite
*/
get_header(); ?>
<section id="content" class="clearfix">
<?php if (have_posts()) : ?>
<div id="post-listing" class="clearfix">
<?php
// Show only one Sticky Post
$sticky = get_option( 'sticky_posts' );
$args = array(
'posts_per_page' => 1,
'post__in' => $sticky,
'ignore_sticky_posts' => 1
);
query_posts( $args );
if ( count($sticky)>0 ) {
while (have_posts()) : the_post();
get_template_part( 'loop', 'index' );
endwhile;
}
wp_reset_query();
// Exclude Sticky Posts and show remaining normal posts
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts( array(
'post__not_in' => get_option( 'sticky_posts' ),
'paged' => $paged
) );
while (have_posts()) : the_post();
get_template_part( 'loop', 'index' );
endwhile;
?>
</div>
<!-- #post-listing -->
<?php
sampression_content_nav( 'nav-below' );
else:
?>
<article id="post-0" class="no-results not-found">
<header class="entry-header">
<h2 class="entry-title"><?php _e( 'Nothing Found', 'sampression' ); ?></h2>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'sampression' ); ?></p>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php endif; ?>
</section>
<!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>