forked from inclusive-design/idi-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar-news.php
47 lines (42 loc) · 1.1 KB
/
sidebar-news.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
<div>
<div class="idi-article-list">
<h3>Newest articles</h3>
<ul>
<?php
query_posts('posts_per_page=5'); // query to show all posts independant from what is in the center;
if (have_posts()) :
while (have_posts()) :
the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</li>
<?php
endwhile;
endif;
wp_reset_query();
?>
</ul>
<?php
query_posts('tag=video&posts_per_page=5'); // query to show posts tagged video;
if (have_posts()) :
?>
<h3>Recent Videos</h3>
<ul>
<?php
while (have_posts()) :
the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</li>
<?php
endwhile;
endif;
wp_reset_query();
?>
</ul>
</div>
<?php get_template_part("mailing-list-form"); ?>
<?php get_template_part('tweets', 'aegisprog') ?>
<?php get_template_part('tweets', 'SNOWocad') ?>
<?php get_template_part('tweets', 'FluidProject') ?>
</div>