Example #1
0
function thesis_single_loop()
{
    while (have_posts()) {
        the_post();
        $classes = 'post_box top';
        thesis_post_box($classes);
        comments_template();
    }
}
Example #2
0
 function single()
 {
     while (have_posts()) {
         #wp
         the_post();
         #wp
         $classes = 'post_box top';
         thesis_post_box($classes);
         comments_template();
         #wp
     }
 }