Codice PHP:
<?php get_header(); ?>
<div id="content" class="widecolumn">
<ul>
<strong>Ultime news e aggiornamenti ufficiali di AlterBlog</strong>
<table class="blogs">
<?php
query_posts('showposts=7');
if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<tr>
<td>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title();?> </a></li>
</td>
</tr>
<?php endwhile; ?><?php endif; ?>
</table>
</ul>
<?php
$blogs = get_last_updated();
if( is_array( $blogs ) ) {
?>
<ul>
<strong>Ultimi blog creati</strong>
<?php foreach( $blogs as $details ) {
?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
}
?>
</ul>
<?php
}
?>
</div>
<?php get_footer(); ?>
e nel tuo css aggiungi
Codice:
.blogs td
{
border:1px #000000 solid
}
ti mette un bordo di 1 pixel alle celle...
prova