-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathadditionalPosts-archives.php
More file actions
123 lines (90 loc) · 2.82 KB
/
Copy pathadditionalPosts-archives.php
File metadata and controls
123 lines (90 loc) · 2.82 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
/**
* This template loads additional Posts if any exist from the homepage.
* Template Name: Additional Posts - Archives
*
* @package MITLibraries-News
* @since 1.0.0
*/
?>
<script type="text/javascript">
$(document).ready(function() {
$("img.img-responsive").lazyload({
effect : "fadeIn",
effectspeed: 450 ,
failure_limit: 999999
});
});
</script>
<?php
$offset = htmlspecialchars( trim( $_GET['offset'] ) );
if ( '' == $offset ) {
$offset = 10;
}
$limit = htmlspecialchars( trim( $_GET['limit'] ) );
if ( '' == $limit ) {
$limit = 9;
}
$args = array(
'post_type' => array( 'bibliotech' ),
'post__not_in' => array( 'sticky_posts' ),
'ignore_sticky_posts' => 1,
'offset' => 10,
'posts_per_page' => $limit,
'order' => 'DESC',
'orderby' => 'date',
'suppress_filters' => false,
);
$the_query = new WP_Query( $args );
?>
<div class="row">
<?php
// Removes button start.
$ajaxLength = $the_query->post_count;
?>
<?php if ( $ajaxLength < $limit ) { ?>
<script>
$("#another").hide();
</script>
<?php }
// Removes button end. ?>
<?php if ( $the_query->have_posts() ) : ?>
<?php
$i = -1;
while ( $the_query->have_posts() ) : $the_query->the_post();
$theLength = $my_query->post_count;
$i++;
?>
<div class="<?php if ( 0 === $i % 3 ) { echo 'third '; } ?> col-xs-12 col-xs-B-6 col-sm-4 col-md-4 no-padding-left-mobile">
<div class="flex-item blueTop eventsBox <?php echo esc_attr( check_image() ); ?>"
onClick='location.href="<?php if ( ('' !== get_field( 'external_link' )) && 'spotlights' == $post->post_type ) { the_field( 'external_link' );
} else { echo get_post_permalink();} ?>"'>
<?php
if ( '' !== get_field( 'listImg' ) ) { ?>
<img data-original="<?php the_field( 'listImg' ) ?>" width="100%" height="111" class="img-responsive" alt="<?php the_title(); ?>"/>
<?php } ?>
<h2 class="entry-title title-post <?php if ( 'spotlights' === $post->post_type ) { echo 'spotlights'; } ?>">
<?php the_title(); ?>
</h2>
<?php get_template_part( 'inc/events' ); ?>
<?php get_template_part( 'inc/entry' ); ?>
<!--final **** else-->
<?php { ?>
<!--EVENT -->
<?php } ?>
<div class="category-post">
<?php
$category = get_the_category();
$rCat = count( $category );
$r = rand( 0, $rCat -1 );
echo '<a title="' . $category[ $r ]->cat_name . '" title="' . $category[ $r ]->cat_name . '" href="' . get_category_link( $category[ $r ]->term_id ) . '">' . $category[ $r ]->cat_name . '</a>';
?>
<span class="mitDate">
<time class="updated" datetime="<?php echo get_the_date(); ?>"> <?php echo get_the_date(); ?></time>
</span> </div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); // Restore global post data stomped by the_post(). ?>
</div>