get_option( 'sticky_posts' ),
'paged' => $paged,
'posts_per_page' => 8
);
query_posts($args);
if ( have_posts() ) :
// The Loop
$url="";
$counter=1; ?>
';
echo '
';
global $more;
$more = 0;
if ( has_post_thumbnail() ) {
the_post_thumbnail(array(100,100), array('class' => 'alignright'));
}
$content = get_the_content('
Read the rest of the post.');
$content = preg_replace("/
![]()
]+./", "", $content);
echo $content;
echo '
';
$counter++;
endwhile;
?>