Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <?php
- /**
- *
- * @link https://codex.wordpress.org/Template_Hierarchy
- *
- * @package Gamer_Meld
- * recent posts
- */
- get_header();
- $comm_link = '<image src="http://localhost/wordpress/wp-
- content/uploads/2017/01/speech2.png" class="comment_image">';
- ?><div class= comment1> <?php $comm_word = '0';?> </div>
- <div class="new_home_wrap">
- <div class="gap-2"></div>
- <h3 class="nk-decorated-h-2">
- <span>
- Recent <span class="text-main-1">Posts </span> </span>
- </h3>
- <div class="gap"></div>
- <div class="new_home_single">
- <ul>
- <?php $the_query = new WP_Query( 'posts_per_page=6' ); ?>
- <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
- <div class="posting_classs">
- <a href="<?php the_permalink()?>">
- <?php
- /***** Thumbnail ******/
- the_post_thumbnail(
- array(280, 150),
- array(
- 'class' => 'thumbnail_class', //custom class for post thumbnail if any
- 'alt' => 'post thumbnail', //post thumbnail alternate title
- 'title' => 'my custom title' //Title of thumbnail
- )
- );?></a>
- <div id="post-<?php the_ID(); ?>" <?php post_class( 'post_box' ); ?>>
- <h2 class="title_home"><a href="<?php the_permalink() ?>">
- <?php echo ShortenText(get_the_title()) ; ?></a></h2>
- <div class="date_wrap"><p class="date1"><?php the_date('m-d-Y', '', ''); ?></p></div>
- <div class="comment_wrap"> <?php comments_popup_link("$comm_word $comm_link", "1 $comm_link", "% $comm_link"); ?></div>
- <p class="excerpt_class"> <?php echo the_excerpt(25); ?></p>
- </div>
- </div>
- <?php
- endwhile;
- wp_reset_postdata();
- ?>
- </ul>
- </div>
- <div class="gap-2"></div>
- <h3 class="nk-decorated-h-2">
- <span>
- New <span class="text-main-1">Videos </span> </span>
- </h3>
- <div class="gap"></div>
- <div class="video_class"><?php echo do_shortcode("[yottie id='1']"); ?></div>
- </div>
- </div>
- <div class="sidebar1"><?php dynamic_sidebar( 'sidebar-1' );?></div>
- <?php
- get_footer();
- ?></div>
Advertisement
Add Comment
Please, Sign In to add comment