Advertisement
ikamal7

event_banner_cont.php

Nov 4th, 2020
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.43 KB | None | 0 0
  1. <div class="banner_middle_content">
  2.     <div class="countdown-timer">
  3.         <ul class="countdown-list" data-countdown="<?php echo gmdate('Y/m/d',get_post_meta( $post->ID, 'evcal_erow', true )); ?>"></ul>
  4.     </div>
  5.     <div class="banner_event_date">
  6.         <?php
  7.             $start_date = gmdate('M d Y',get_post_meta( $post->ID, 'evcal_srow', true ));
  8.             $end_date = gmdate('M d Y', get_post_meta( $post->ID, 'evcal_erow', true ));
  9.                 echo '<div class="event_date"><div class="event_date_top"><div class="slider_day">'.
  10.                 gmdate('D', get_post_meta($post->ID, 'evcal_srow', true)).
  11.                 '</div><div class="slider_month">'.
  12.                 gmdate('<\s\p\a\n\ \c\l\a\s\s\=\"\d\a\t\e\">j</\s\p\a\n>
  13.                <\s\u\p>S</\s\u\p>
  14.                <\s\p\a\n\ \c\l\a\s\s\=\"\m\o\n\t\h">F</\s\p\a\n>', get_post_meta($post->ID, 'evcal_srow', true)).
  15.                 '</div></div><div class="event_date_bottom"><div class="event_time"><i class="fa fa-clock-o" aria-hidden="true"></i>'.
  16.                 gmdate('h:i A', get_post_meta($post->ID, 'evcal_srow', true)).
  17.                 '<span>-</span>'.
  18.                 gmdate('h:i A', get_post_meta($post->ID, 'evcal_erow', true)).
  19.                 '</div></div></div>';
  20.         ?>
  21.     </div>
  22.     <div class="slider-overlay_right">
  23.         <ul>
  24.             <li class="slider-overlay_right-info" aria-label="<?php
  25.                 $the_content = get_excerpt(200);
  26.                 if ( !empty($the_content) ) { ?>
  27.                     <?php echo $the_content;?><?php }?>"><span>&#8230;</span><i class="fas fa-info-circle"></i><span>&#8230;</span>
  28.             </li>
  29.             <li><i class="fas fa-chart-area"></i>
  30.                 <?php
  31.                     $postviews = get_post_meta($post->ID, 'tie_views', true);
  32.                     if($postviews > 0 && $postviews<=999){
  33.                         echo $postviews;
  34.                     }
  35.                     elseif($postviews>1000){
  36.                         $result = number_format(($postviews/1000),1) .'k';
  37.                         echo $result;
  38.                     }
  39.                     else {
  40.                         echo "0";
  41.                     }
  42.                 ?>
  43.             </li><span>/</span>
  44.             <li><i class="fas fa-comment-dots"></i><?php echo get_comments_number_text( '0', '1', '%' );?></li><span>/</span>
  45.             <li><i class="fas fa-heart"></i>0</li>
  46.         </ul>
  47.     </div>
  48. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement