Featured medical articles.
global $post; // required
$args = array(‘meta_key’ => ‘_is_article’, ‘meta_value’ => ‘true’);
$custom_posts = get_posts($args);
foreach($custom_posts as $post) : setup_postdata($post);
echo ”
” . substr($post->post_content,0, 50) . “
“;
endforeach;
?>