PageRenderTime 38ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/blog/wp-content/themes/chaostheory/author.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 47 lines | 36 code | 11 blank | 0 comment | 2 complexity | 192a6a6f72ad1831eff9414b110139c1 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php get_header() ?>
  2. <div id="container">
  3. <div id="content" class="hfeed">
  4. <?php the_post() ?>
  5. <h2 class="page-title"><?php printf(__('Author Archives: %s', 'chaostheory'), "<a class='url fn' href='$authordata->user_url' title='$authordata->display_name'>$authordata->display_name</a>") ?></h2>
  6. <?php if ( $authordata->user_description ) { ?><div class="archive-meta"><?php echo apply_filters('archive_meta', $authordata->user_description); ?></div><?php } ?>
  7. <div id="nav-above" class="navigation">
  8. <div class="nav-previous"><?php next_posts_link(__('&laquo; Older posts', 'chaostheory')) ?></div>
  9. <div class="nav-next"><?php previous_posts_link(__('Newer posts &raquo;', 'chaostheory')) ?></div>
  10. </div>
  11. <?php rewind_posts(); while (have_posts()) : the_post(); ?>
  12. <div id="post-<?php the_ID() ?>" class="<?php sandbox_post_class() ?>">
  13. <div class="entry-meta">
  14. <h2 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php echo esc_attr( sprintf( __( 'Permanent link to %s', 'chaostheory' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title() ?></a></h2>
  15. <ul>
  16. <li class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php unset($previousday); printf(__('%1$s &#8211; %2$s', 'chaostheory'), the_date('', '', '', false), get_the_time()) ?></abbr></li>
  17. <!-- <li class="entry-author author vcard"><?php printf(__('By %s', 'chaostheory'), '<a class="url fn" href="'.get_author_link(false, $authordata->ID, $authordata->user_nicename).'" title="View all posts by ' . $authordata->display_name . '">'.get_the_author().'</a>') ?></li> -->
  18. <li class="entry-category"><?php printf(__('Posted in %s', 'chaostheory'), get_the_category_list(', ')) ?></li>
  19. <?php the_tags('<li class="entry-tags">'.__('Tagged').' ', ", ", "</li>\n") ?>
  20. <?php edit_post_link(__('Edit', 'chaostheory'), "\t\t\t\t\t<li class='entry-editlink'>", "</li>"); ?>
  21. <li class="entry-commentlink"><?php comments_popup_link(__('Leave a Comment', 'chaostheory'), __('Comments (1)', 'chaostheory'), __('Comments (%)', 'chaostheory')) ?></li>
  22. </ul>
  23. </div>
  24. <div class="entry-content">
  25. <?php the_content('<span class="more-link">'.__('Read More &raquo;', 'chaostheory').'</span>') ?>
  26. </div>
  27. </div><!-- .post -->
  28. <?php endwhile ?>
  29. <div id="nav-below" class="navigation">
  30. <div class="nav-previous"><?php next_posts_link(__('&laquo; Older posts', 'chaostheory')) ?></div>
  31. <div class="nav-next"><?php previous_posts_link(__('Newer posts &raquo;', 'chaostheory')) ?></div>
  32. </div>
  33. </div><!-- #content .hfeed -->
  34. </div><!-- #container -->
  35. <?php get_sidebar() ?>
  36. <?php get_footer() ?>