Advertisement
itbatayan

index.php

Oct 15th, 2018
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <!--Start Call header.php file--->
  2. <?php get_header(); ?>
  3. <!--End Call header.php file--->
  4.  
  5. <div id="content-homepage"> <!--start content or post styling--->
  6.  
  7. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  8. <h2><a href='<?php the_permalink() ?>'><?php the_title(); ?></a></h2>
  9.  
  10. <!--start post bio--->
  11. »<?php the_author();?>
  12. »<?php the_date('j F, Y');?>
  13. »<?php comments_popup_link ('মন্তব্য করুন' , '1 টি মন্তব্য' , '% মন্তব্য'); ?>
  14. »<?php edit_post_link('সম্পাদনা', '', '');?>
  15. » <?php the_category (' , ') ?>
  16. <!--end post bio--->
  17.  
  18. <div id="clear"></div>
  19.  
  20. <div class="homepage-excerpt-thumbnail"> <!--start homepage excerpt thumbnail styling--->
  21. <?php if ( has_post_thumbnail() ) { the_post_thumbnail('portfolio'); } else { ?> <img src="<?php bloginfo('template_directory'); ?>/images/default.gif" /> <?php } ?>
  22. </div> <!--end homepage excerpt thumbnail styling--->
  23.  
  24. <?php the_excerpt();?>
  25.  
  26. <hr>
  27. <?php endwhile; else: ?>
  28.  
  29. <?php _e('Sorry, no posts matched your criteria.'); ?>
  30. <?php endif; ?>
  31. </div> <!--end content or post styling--->
  32.  
  33. <?php get_sidebar(); ?>
  34.  
  35. <div id="clear"></div>
  36.  
  37. </div> <!--End container--->
  38. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement