Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. <ul class="Michelo">
  2.     <li> Written by:
  3.       <?php the_author_posts_link(); ?>
  4.     </li>
  5.     <li>In: <a href="<?php echo $category_link; ?>" title="Category Name">
  6.       <?php global $post; $category = get_the_category($post->ID); echo $category[0]->name; ?>
  7.       </a> </li>
  8.     <li>
  9.         <?php $i = 0;foreach ( get_the_tags() as $tag ) { if ( ++$i == 3 ){ break; } echo 'Tags: ' . 'the_tags()' } ?>
  10.     </li>
  11.     <li>
  12.       <?php if(function_exists('the_views')) { the_views(); } ?>
  13.     </li>
  14.     <li><a href="<?php comments_link(); ?>">
  15.       <?php comments_number('0', '1', 'more'); ?>
  16.       comments</a></li>
  17.     <li class="MichelReadMoreo"><a href="<?php the_permalink(); ?>" title="Read More">read more »</a></li>
  18.   </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement