Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php if (have_posts()) : ?>
  3.  
  4. <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
  5. <?php /* If this is a category archive */ if (is_category()) { ?>
  6. <h2 class="title">&#8216;<strong><?php single_cat_title(); ?></strong>&#8217; Category Archive</h2>
  7. <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
  8. <h2 class="title">&#8216;<strong><?php single_tag_title(); ?></strong>&#8217; Tagged Posts</h2>
  9. <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
  10. <h2 class="title"><strong><?php the_time('F jS, Y'); ?></strong> Archive</h2>
  11. <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
  12. <h2 class="title"><strong><?php the_time('F, Y'); ?></strong> Archive</h2>
  13. <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
  14. <h2 class="title"><strong><?php the_time('Y'); ?></strong> Archive</h2>
  15. <?php /* If this is an author archive */ } elseif (is_author()) { ?>
  16. <?php $author = get_userdata( get_query_var('author') );?>
  17. <h2 class="title2"><?php echo $author->display_name;?> @ Xblog</p>
  18. <h2 class="numberofposts">Total number of posts at Xblog: <strong><?php the_author_posts(); ?></strong></h2>
  19. <br><br>
  20. <?php the_author_posts_link(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement