'_featured_post',
'meta_value' => true,
);
$featured_post = get_posts( $args );
if($featured_post):
echo '
';
foreach ( $featured_post as $post ) : setup_postdata( $post );
$exclude_ids[]=get_the_ID();
?>
';
if(has_post_thumbnail())
echo get_the_post_thumbnail(get_the_ID(), array(140,140), array("class"=>"img-circle"));
else
echo '
.'/img/relthumb.png)
';
echo '
';
?>
Read More ยป
";
endif;