-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelated.php
29 lines (25 loc) · 1 KB
/
related.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
<div class="meta">
<?php
ob_start();
ob_implicit_flush(0);
echo get_option('suburbia_apropos');
$my_logo = ob_get_contents();
ob_end_clean();
if (
$my_logo == ''
): ?>
<a href="<?php bloginfo("url"); ?>/">
<img src="<?php bloginfo('template_url'); ?>/images/logo2.gif" alt="<?php bloginfo('name'); ?>" width="155" height="155" class="dem" /></a>
<?php else: ?>
<a href="<?php bloginfo("url"); ?>/"><img src="<?php echo get_option('suburbia_apropos'); ?>" width="155" height="155" class="dem" /></a>
<?php endif; ?>
<h3>Recent articles</h3>
<ul class="recent">
<?php
query_posts(array('posts_per_page' => 5));
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a><span><?php the_time('d M Y'); ?></span></li>
<?php endwhile; endif; wp_reset_query();
?>
</ul>
</div>