Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $blog_post_query = new WP_Query(array(
- 'post_type' => 'blog-post'
- )); ?>
- <?php if($blog_post_query->have_posts()) : $i = 0;?><?php while($blog_post_query->have_posts()) : $blog_post_query->the_post(); $i++;?>
- <div class="blog_single_post">
- <h1><?php the_title();?></h1>
- <div class="blog_post_info_index">
- <p>By Writer | <i class="fa fa-eye"></i> <?php if(function_exists('the_views')) { the_views(); } ?> | <i class="fa fa-calendar"></i> Date: <?php the_time('j/m/Y'); ?> | <i class="fa fa-clock-o"> Time: <?php the_time('g:iA'); ?></i> | <i class="fa fa-thumb-tack"></i> Category: <?php the_blog_cat(); ?> | <i class="fa fa-edit"></i> <?php edit_post_link( __( 'Edit' )); ?> </p>
- </div>
- <div class="blog_post_index">
- <div class="blog_post_feature">
- <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('blog_post_img'); ?></a>
- </div>
- <div class="blog_single_post_content">
- <p><?php echo excerpt(40); ?></p>
- </div>
- <div class="blog_single_post_readmore">
- <a href="<?php the_permalink();?>">Read More</a>
- </div>
- </div>
- </div>
- <?php endwhile;?>
- <?php endif ;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement