PageRenderTime 40ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/themes/twentyeleven/content-intro.php

https://bitbucket.org/space87/wordpressstart
PHP | 21 lines | 12 code | 2 blank | 7 comment | 0 complexity | d9264b692466c9f10e3b531407d58085 MD5 | raw file
  1. <?php
  2. /**
  3. * The template for displaying page content in the showcase.php page template
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Eleven
  7. * @since Twenty Eleven 1.0
  8. */
  9. ?>
  10. <article id="post-<?php the_ID(); ?>" <?php post_class( 'intro' ); ?>>
  11. <header class="entry-header">
  12. <h2 class="entry-title"><?php the_title(); ?></h2>
  13. </header><!-- .entry-header -->
  14. <div class="entry-content">
  15. <?php the_content(); ?>
  16. <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
  17. <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
  18. </div><!-- .entry-content -->
  19. </article><!-- #post-<?php the_ID(); ?> -->