ruạṛ
<div class="row"> <div class="col"> <?php while (have_posts()) : the_post(); ?> <article <?php post_class(); ?>> <div class="col-sm-5 col-md-4" style="margin-top:25px;"> <?php $imgurl =false; $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); if(!empty($image[0])) $imgurl = $image[0]; if( $imgurl ): ?> <div class="featured-image"> <img src="<?php echo $imgurl; ?>" alt="" /> </div> <?php endif; ?> </div> <div class="col-sm-7 col-md-8"> <header> <h1 class="entry-title"><?php the_title(); ?></h1> <?php get_template_part('templates/entry-meta'); ?> </header> <div class="entry-content"> <?php the_content(); ?> </div> <footer> <?php wp_link_pages(array('before' => '<nav class="page-nav"><p>' . __('Pages:', 'roots'), 'after' => '</p></nav>')); ?> </footer> <?php comments_template('/templates/comments.php'); ?> </div> </article> <?php endwhile; ?> </div> </div>
cải xoăn