-
Notifications
You must be signed in to change notification settings - Fork 0
/
news-feed-new.php
53 lines (49 loc) · 1.47 KB
/
news-feed-new.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
<?
wp_reset_query();
$i = 1;
$max_num = 8;
$current_date = '';
$args = array(
'posts_per_page' => 2,
'post_type' => 'news',
'order' => 'DESC',
'orderby' => 'date',
'meta_query' => array(
array(
'key' => '_cmb_home_news_checkbox',
'value' => 'on',
),
)
);
echo '<div class="test-news-feed">';
echo '<div class="news-feed">';
$loop = new WP_Query($args);
if ($loop->have_posts()) {
while ($loop->have_posts()) : $loop->the_post();
$news_excerpt = mstar_custom_excerpt($words = 10, $link_text = 'read more', $allowed_tags = '', $smileys = 'no', $link = '', $echo = false);
$allowed_tags = '<a>,<i>,<em>,<b>,<span>';
$news_excerpt = preg_replace('/\[.*\]/', '', strip_tags($news_excerpt, $allowed_tags));
$post_date = get_the_date( 'F j, Y' );
$thumb_id = get_post_thumbnail_id();
$thumb_url = wp_get_attachment_image_src($thumb_id,'blog-thumb', true);
echo '<a href="'.get_permalink().'">';
echo '<div class="news-item ti-' . $i . '">';
echo '<div class="news-image">';
if( has_post_thumbnail() ){
the_post_thumbnail('blog-thumb');
}
echo '</div>';
echo '<div class="news-excerpt"><p>';
//echo $news_excerpt;
the_title();
echo '</p></div>';
echo '</div>';
echo '</a>';
$i++;
endwhile;
wp_reset_query();
}
echo '</div>';
echo '</div>';
?>
<div class="clear"></div>