PageRenderTime 39ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/blog/wp-content/themes/toolbox/loop.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 69 lines | 56 code | 9 blank | 4 comment | 6 complexity | c53f1a62e8b5969dc963fac66c456591 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Toolbox
  5. */
  6. ?>
  7. <?php /* Display navigation to next/previous pages when applicable */ ?>
  8. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  9. <nav id="nav-above">
  10. <h1 class="section-heading"><?php _e( 'Post navigation', 'toolbox' ); ?></h1>
  11. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'toolbox' ) ); ?></div>
  12. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'toolbox' ) ); ?></div>
  13. </nav><!-- #nav-above -->
  14. <?php endif; ?>
  15. <?php /* Start the Loop */ ?>
  16. <?php while ( have_posts() ) : the_post(); ?>
  17. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  18. <header class="entry-header">
  19. <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'toolbox' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
  20. <div class="entry-meta">
  21. <?php
  22. printf( __( '<span class="sep">Posted on </span><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate>%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'toolbox' ),
  23. get_permalink(),
  24. get_the_date( 'c' ),
  25. get_the_date(),
  26. get_author_posts_url( get_the_author_meta( 'ID' ) ),
  27. sprintf( esc_attr__( 'View all posts by %s', 'toolbox' ), get_the_author() ),
  28. get_the_author()
  29. );
  30. ?>
  31. </div><!-- .entry-meta -->
  32. </header><!-- .entry-header -->
  33. <?php if ( is_archive() || is_search() ) : // Only display Excerpts for archives & search ?>
  34. <div class="entry-summary">
  35. <?php the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'toolbox' ) ); ?>
  36. </div><!-- .entry-summary -->
  37. <?php else : ?>
  38. <div class="entry-content">
  39. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'toolbox' ) ); ?>
  40. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'toolbox' ), 'after' => '</div>' ) ); ?>
  41. </div><!-- .entry-content -->
  42. <?php endif; ?>
  43. <footer class="entry-meta">
  44. <span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php _e( 'Posted in ', 'toolbox' ); ?></span><?php the_category( ', ' ); ?></span>
  45. <span class="sep"> | </span>
  46. <?php the_tags( '<span class="tag-links">' . __( 'Tagged ', 'toolbox' ) . '</span>', ', ', '<span class="sep"> | </span>' ); ?>
  47. <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'toolbox' ), __( '1 Comment', 'toolbox' ), __( '% Comments', 'toolbox' ) ); ?></span>
  48. <?php edit_post_link( __( 'Edit', 'toolbox' ), '<span class="sep">|</span> <span class="edit-link">', '</span>' ); ?>
  49. </footer><!-- #entry-meta -->
  50. </article><!-- #post-<?php the_ID(); ?> -->
  51. <?php comments_template( '', true ); ?>
  52. <?php endwhile; ?>
  53. <?php /* Display navigation to next/previous pages when applicable */ ?>
  54. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  55. <nav id="nav-below">
  56. <h1 class="section-heading"><?php _e( 'Post navigation', 'toolbox' ); ?></h1>
  57. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'toolbox' ) ); ?></div>
  58. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'toolbox' ) ); ?></div>
  59. </nav><!-- #nav-below -->
  60. <?php endif; ?>