예제 #1
0
파일: loop.php 프로젝트: billerby/Surdeg
function thesis_single_loop()
{
    while (have_posts()) {
        the_post();
        $classes = 'post_box top';
        thesis_post_box($classes);
        comments_template();
    }
}
예제 #2
0
 function single()
 {
     while (have_posts()) {
         #wp
         the_post();
         #wp
         $classes = 'post_box top';
         thesis_post_box($classes);
         comments_template();
         #wp
     }
 }