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

/blog/wp-content/themes/sandbox/single.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 58 lines | 47 code | 11 blank | 0 comment | 5 complexity | 56f1e57e042c37c672dac5b017bfa79e 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. <div id="nav-above" class="navigation">
  6. <div class="nav-previous"><?php previous_post_link('&laquo; %link') ?></div>
  7. <div class="nav-next"><?php next_post_link('%link &raquo;') ?></div>
  8. </div>
  9. <div id="post-<?php the_ID(); ?>" class="<?php sandbox_post_class(); ?>">
  10. <h2 class="entry-title"><?php the_title(); ?></h2>
  11. <div class="entry-content">
  12. <?php the_content('<span class="more-link">'.__('Read More &raquo;', 'sandbox').'</span>'); ?>
  13. <?php link_pages('<div class="page-link">'.__('Pages: ', 'sandbox'), '</div>', 'number'); ?>
  14. </div>
  15. <div class="entry-meta">
  16. <?php printf(__('This entry was written by %1$s and posted on <abbr class="published" title="%2$sT%3$s">%4$s at %5$s</abbr> and filed under %6$s%10$s. Bookmark the <a href="%7$s" title="Permalink to %8$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%9$s" title="Comments RSS to %8$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'sandbox'),
  17. '<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>',
  18. get_the_time('Y-m-d'),
  19. get_the_time('H:i:sO'),
  20. the_date('', '', '', false),
  21. get_the_time(),
  22. get_the_category_list(', '),
  23. get_permalink(),
  24. esc_attr( get_the_title() ),
  25. comments_rss(),
  26. get_the_tag_list(__(' with tags '), ', ') ) ?>
  27. <?php if (comments_open() && pings_open()) : // COMMENTS & PINGS OPEN ?>
  28. <?php printf(__('<a href="#respond" title="Post a comment">Post a comment</a> or leave a trackback: <a href="%s" rel="trackback" title="Trackback URL for your post">Trackback URL</a>.', 'sandbox'), get_trackback_url()) ?>
  29. <?php elseif (!comments_open() && pings_open()) : // PINGS ONLY OPEN ?>
  30. <?php printf(__('Comments are closed, but you can leave a trackback: <a href="%s" rel="trackback" title="Trackback URL for your post">Trackback URL</a>.', 'sandbox'), get_trackback_url()) ?>
  31. <?php elseif (comments_open() && !pings_open()) : // COMMENTS OPEN ?>
  32. <?php printf(__('Trackbacks are closed, but you can <a href="#respond" title="Post a comment">post a comment</a>.', 'sandbox')) ?>
  33. <?php elseif (!comments_open() && !pings_open()) : // NOTHING OPEN ?>
  34. <?php _e('Both comments and trackbacks are currently closed.') ?>
  35. <?php endif; ?>
  36. <?php edit_post_link(__('Edit this entry.', 'sandbox'),'',''); ?>
  37. </div>
  38. </div><!-- .post -->
  39. <div id="nav-below" class="navigation">
  40. <div class="nav-previous"><?php previous_post_link('&laquo; %link') ?></div>
  41. <div class="nav-next"><?php next_post_link('%link &raquo;') ?></div>
  42. </div>
  43. <?php comments_template(); ?>
  44. </div><!-- #content .hfeed -->
  45. </div><!-- #container -->
  46. <?php get_sidebar(); ?>
  47. <?php get_footer(); ?>