-
Notifications
You must be signed in to change notification settings - Fork 0
/
sticky.php
29 lines (25 loc) · 1.08 KB
/
sticky.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
<?php while (have_posts()) : the_post(); ?>
<?php if (!is_sticky()) continue; ?>
<!-- ******************* The Sticky Area ******************* -->
<div class="wrapper" id="wrapper-sticky">
<div class="container">
<div class="row">
<div class="col-md-12">
<?php
$sticky = get_option( 'sticky_posts' );
$args = array(
'posts_per_page' => 1,
'post__in' => $sticky,
'ignore_sticky_posts' => 1
);
$query = new WP_Query( $args );
if ( isset($sticky[0]) ) {
get_template_part( 'content', get_post_format() );
}
wp_reset_query();
?>
</div>
</div>
</div>
</div><!-- #wrapper-sticky-->
<?php endwhile; ?>