Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.19 KB | None | 0 0
  1. <div class="post col-xs-12 col-sm-12 col-md-9">
  2.                             <div class="post-content">
  3.                                 <h4><?php the_title(); ?></h4>
  4.                                 <div class="format_text"><?php the_excerpt(); ?></div>
  5.                                 <?php
  6.                                 if( date('Yz') == get_the_time('Yz') ) {
  7.                                     $date =  __('Idag','mbp').' '.get_the_time('h:i');
  8.                                 } else {
  9.                                     $date =  get_the_time('Y-m-d');
  10.                                 }
  11.                                 ?>
  12.                                 <div class="date"><?php _e('Publicerad', 'mbp'); ?>: <span> <?php echo $date; ?></span></div>
  13.                                 <div class="author"><?php echo __('Publicerad av', 'mbp').': <span>'.get_the_author() ?></span></div>
  14.                                 <div class="regulatory"><span><?php echo $post->IsRegulatory; ?></span></div>
  15.                                 <a class="link" href="<?php echo get_permalink(get_the_ID()); ?>"><?php _e('Läs artikeln', 'mbp') ?></a>
  16.                             </div>
  17.                         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement