<?php $my_query = new WP_Query('category_name=&posts_per_page=10');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div id="Title" class="Title"><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></div>
<div id="Excerpt" class="<p>Excerpt"><?php the_excerpt(); ?></p></div>
<div id="Read" class="Read"><a href="<?php echo get_permalink(); ?>">Read More</a><?php edit_post_link('+','','.'); ?></div>
<?php endwhile; ?>
#Title
{
font-family:sans-serif;
font-weight: bold;
color: #000066;
background-color: #dddddd;
width:100%;
}
#Title a:link{
font-family:sans-serif;
color: #000000;
}
#Title a:visited{
font-family:sans-serif;
color: #000000;
}
#Title p{
font-family:sans-serif;
color: #000000;
}
#Title a:hover{
font-family:sans-serif;
color: #ff0000;
}
#Read{
font-family:sans-serif;
font-weight: normal;
color: #000000;
width:100%;
}
}
#Read a:link{
font-family:sans-serif;
color: #000000;
}
#Read a:visited{
font-family:sans-serif;
color: #000000;
}
#Read p{
font-family:sans-serif;
color: #000000;
}
#Read a:hover{
font-family:sans-serif;
color: #ff0000;
}
#Excerpt{
font-family:sans-serif;
width:100%;
margin-top:10px;
}
#Excerpt p{
font-family:sans-serif;
font-weight: normal;
color: #000000;
}