diff options
Diffstat (limited to 'content-page.php')
-rw-r--r-- | content-page.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/content-page.php b/content-page.php index 839f4e7..0b3265d 100644 --- a/content-page.php +++ b/content-page.php @@ -1,5 +1,5 @@ <?php -printf ( '<div class="main col-md-8"> + printf('<div class="main col-md-8"> <div class="row posts">'); //Lógica de the_loop //Si (hay entradas) @@ -10,7 +10,6 @@ printf ( '<div class="main col-md-8"> if( have_posts() ): while( have_posts() ): the_post(); - //echo ''; $template_html = ' <div class="col-sm-12 post"> <div class="contenedor"> @@ -36,9 +35,9 @@ printf ( '<div class="main col-md-8"> //get_the_content() //the_category() ); - printf(' <div class="texto">'); + printf('<div class="texto">'); the_content(); - printf(' </div> + printf('</div> </article> </div> </div>' @@ -48,5 +47,5 @@ printf ( '<div class="main col-md-8"> printf( '<p>' . __('No pages', 'Lidra') . '</p>' ); endif; rewind_posts(); -printf(' </div> + printf('</div> </div>'); |