Advertisement
kobial8

Bangla Time| Author | Category | Comments | Thumbnail | Date

Feb 13th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.91 KB | None | 0 0
  1. <!--  bangla Current Time Day Date Year-->
  2. <?php
  3. date_default_timezone_set('Asia/Dhaka');
  4. $currentDate = date("l, F j, Y , h:i a");
  5. $engDATE = array(1,2,3,4,5,6,7,8,9,0,January,February,March,April,May,June,July,August,September,October,November,December,Saturday,Sunday,Monday,Tuesday,Wednesday,Thursday,Friday);
  6. $bangDATE = array('১','২','৩','৪','৫','৬','৭','৮','৯','০','জানুয়ারী','ফেব্রুয়ারী','মার্চ','এপ্রিল','মে','জুন','জুলাই','আগস্ট','সেপ্টেম্বর','অক্টোবর','নভেম্বর','ডিসেম্বর','শনিবার','রবিবার','সোমবার','মঙ্গলবার','বুধবার','বৃহস্পতিবার','শুক্রবার');
  7. $convertedDATE = str_replace($engDATE, $bangDATE, $currentDate);
  8. echo "$convertedDATE";
  9. ?>
  10. <!--  'article-meta-comments' is the class of static html\s comment-->
  11. <?php
  12.     if(comments_open() && !post_password_required()) {
  13.        comments_popup_link('0', '1', '%', 'article-meta-comments');
  14.  }
  15. ?>
  16.    
  17. <?php the_author_posts_link(); ?>
  18. <!--to display author biograpy from wordpress backend-->
  19. <?php the_author_meta('description'); ?>
  20.  
  21. <?php the_category('&nbsp;/&nbsp;'); ?>
  22.  
  23. <?php if(has_post_thumbnail()) : ?>
  24.     <?php the_post_thumbnail('blog_img', array('class' => 'imgthumb')); ?> <!-- you should not use it within src= "".-->
  25. <?php endif; ?>
  26.  
  27. <!--  To update blog post date and time as per your wordpress general setup-->
  28. <?php if (get_the_modified_time() != get_the_time()) : ?>
  29.     <?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?>, Last Updated: <?php the_modified_time('F j, Y'); ?> at         <?php   the_modified_time('g:i a'); ?>
  30. <?php else: ?>
  31.     <?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?>
  32. <?php endif; ?>
  33.  
  34. <!--  To update copyright year-->
  35. <?php the_date('Y'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement